/* === Summer Trip 2026 — "Walking on Water: Faith Over Fear" === */

/* Hide church header and top bar for summer trip pages */
.top-bar { display: none !important; }
.site-header { display: none !important; }

/* --- Ocean-themed palette --- */
:root {
  --st-deep: #0b2545;
  --st-ocean: #13497b;
  --st-sky: #1d6fb8;
  --st-light: #4da3e8;
  --st-foam: #e0f0ff;
  --st-sand: #f5ebe0;
  --st-sunset: #f4845f;
  --st-sunset-warm: #e8683a;
  --st-gold-accent: #f0c050;
  --st-white: #ffffff;
  --st-text: #1a2a3a;
  --st-text-soft: #3a5068;
  --st-radius: 16px;
  --st-radius-sm: 10px;
}

/* --- Animated ocean wave keyframes --- */
@keyframes st-wave {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-25%) translateY(-3px); }
  100% { transform: translateX(-50%) translateY(0); }
}
@keyframes st-wave-slow {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-25%) translateY(-5px); }
  100% { transform: translateX(-50%) translateY(0); }
}
@keyframes st-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes st-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes st-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes st-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes st-countdown-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(77, 163, 232, 0.3); }
  50% { box-shadow: 0 0 40px rgba(77, 163, 232, 0.6); }
}
@keyframes st-ripple {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* --- Hero Section --- */
.st-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #0b2545;
}
.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 37, 69, 0.35) 0%, rgba(11, 37, 69, 0.25) 50%, rgba(11, 37, 69, 0.4) 100%);
  z-index: 1;
}

/* Animated wave layers */
.st-hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  z-index: 2;
}
.st-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.st-hero-wave:nth-child(1) {
  animation: st-wave 8s ease-in-out infinite;
  opacity: 0.5;
}
.st-hero-wave:nth-child(2) {
  animation: st-wave-slow 12s ease-in-out infinite;
  opacity: 0.3;
  bottom: 10px;
}

.st-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px 24px 60px;
}
.st-hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--st-gold-accent);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(240, 192, 80, 0.3);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: st-fade-up 0.8s ease both;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.st-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--st-white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: st-fade-up 0.8s ease 0.15s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5);
}
.st-hero-title em {
  font-style: italic;
  color: var(--st-gold-accent);
}
.st-hero-verse {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  margin: 0 auto 12px;
  line-height: 1.6;
  animation: st-fade-up 0.8s ease 0.3s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.st-hero-verse-ref {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 24px;
  animation: st-fade-up 0.8s ease 0.35s both;
}
.st-hero-dates {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--st-white);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  animation: st-fade-up 0.8s ease 0.45s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.st-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  animation: st-fade-up 0.8s ease 0.5s both;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.st-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: st-fade-up 0.8s ease 0.6s both;
}
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.st-btn-primary {
  background: var(--st-white);
  color: var(--st-deep);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.st-btn-primary:hover {
  background: var(--st-gold-accent);
  color: var(--st-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.st-btn-outline {
  background: transparent;
  color: var(--st-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.st-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* Floating particles (stars/sparkles) in hero */
.st-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.st-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: st-float 4s ease-in-out infinite;
}
.st-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.st-particle:nth-child(2) { top: 25%; left: 80%; animation-delay: 1s; animation-duration: 6s; width: 2px; height: 2px; }
.st-particle:nth-child(3) { top: 45%; left: 20%; animation-delay: 2s; animation-duration: 4.5s; }
.st-particle:nth-child(4) { top: 60%; left: 70%; animation-delay: 0.5s; animation-duration: 5.5s; width: 4px; height: 4px; opacity: 0.3; }
.st-particle:nth-child(5) { top: 35%; left: 50%; animation-delay: 1.5s; animation-duration: 7s; width: 2px; height: 2px; }
.st-particle:nth-child(6) { top: 70%; left: 35%; animation-delay: 3s; animation-duration: 4s; }
.st-particle:nth-child(7) { top: 20%; left: 60%; animation-delay: 2.5s; animation-duration: 6.5s; width: 2px; height: 2px; opacity: 0.4; }
.st-particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 1.8s; animation-duration: 5s; }

/* --- Sticky Trip Nav --- */
.st-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--st-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.st-nav::-webkit-scrollbar { display: none; }
.st-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  min-width: max-content;
}
.st-nav a {
  display: block;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.st-nav a:hover,
.st-nav a.active {
  color: var(--st-gold-accent);
  border-bottom-color: var(--st-gold-accent);
}

/* --- Countdown --- */
.st-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 48px 24px 40px;
  background: var(--st-deep);
  position: relative;
}
.st-countdown-unit {
  text-align: center;
  animation: st-countdown-glow 3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--st-radius);
  padding: 20px 24px 16px;
  min-width: 90px;
}
.st-countdown-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--st-white);
  line-height: 1;
  display: block;
}
.st-countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  display: block;
}

/* --- Section defaults --- */
.st-section {
  padding: 72px 24px;
  position: relative;
}
.st-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.st-section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--st-sky);
  margin-bottom: 10px;
}
.st-section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--st-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.st-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--st-text-soft);
  line-height: 1.75;
  max-width: 680px;
}

/* Alternate backgrounds */
.st-section-ocean {
  background: var(--st-deep);
  color: var(--st-white);
}
.st-section-ocean .st-section-label { color: var(--st-gold-accent); }
.st-section-ocean .st-section-title { color: var(--st-white); }
.st-section-ocean .st-section-desc { color: rgba(255, 255, 255, 0.7); }

.st-section-foam {
  background: var(--st-foam);
}
.st-section-sand {
  background: var(--st-sand);
}
.st-section-white {
  background: var(--st-white);
}

/* --- About --- */
.st-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.st-about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.st-about-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--st-foam) 0%, rgba(77, 163, 232, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.st-about-feature h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 4px;
}
.st-about-feature p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--st-text-soft);
  line-height: 1.6;
}

/* --- Schedule --- */
.st-schedule-days {
  display: flex;
  gap: 8px;
  margin: 36px 0 32px;
  flex-wrap: wrap;
}
.st-day-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s;
}
.st-day-tab:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--st-white);
}
.st-day-tab.active {
  background: var(--st-white);
  color: var(--st-deep);
  border-color: var(--st-white);
}

.st-schedule-panel { display: none; }
.st-schedule-panel.active { display: block; }

.st-timeline {
  position: relative;
  padding-left: 32px;
}
.st-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--st-light), var(--st-sunset));
  border-radius: 2px;
  opacity: 0.3;
}
.st-timeline-item {
  position: relative;
  padding: 0 0 28px 28px;
}
.st-timeline-item:last-child { padding-bottom: 0; }
.st-timeline-dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--st-ocean);
  border: 3px solid var(--st-deep);
  box-shadow: 0 0 0 3px rgba(77, 163, 232, 0.25);
}
.st-timeline-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--st-gold-accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.st-timeline-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--st-white);
  margin-bottom: 2px;
}
.st-timeline-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* --- Activity Cards --- */
.st-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.st-activity-card {
  background: var(--st-white);
  border-radius: var(--st-radius);
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.st-activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--st-sky), var(--st-sunset));
  opacity: 0;
  transition: opacity 0.3s;
}
.st-activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.1);
}
.st-activity-card:hover::before { opacity: 1; }
.st-activity-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.st-activity-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 4px;
}
.st-activity-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--st-text-soft);
  line-height: 1.5;
  margin-bottom: 6px;
}
.st-activity-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--st-sky);
  background: var(--st-foam);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Competition Cards --- */
.st-competitions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.st-comp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--st-radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.st-comp-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.st-comp-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}
.st-comp-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--st-white);
  margin-bottom: 10px;
}
.st-comp-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
.st-comp-details {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}
.st-comp-details li {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-comp-details li::before {
  content: '~';
  color: var(--st-light);
  font-weight: 700;
}

/* --- Team Contest / Scoreboard --- */
.st-team-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.st-team-card {
  background: var(--st-white);
  border-radius: var(--st-radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: all 0.3s ease;
}
.st-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
}
.st-team-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.st-team-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 6px;
}
.st-team-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--st-text-soft);
  line-height: 1.55;
}

/* --- Food Coordination --- */
.st-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.st-food-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--st-radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.st-food-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.st-food-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--st-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-food-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.st-food-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(240, 192, 80, 0.08);
  border: 1px solid rgba(240, 192, 80, 0.2);
  border-radius: var(--st-radius-sm);
  text-align: center;
}
.st-food-note p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--st-ocean);
  line-height: 1.6;
}
.st-food-cta {
  margin-top: 32px;
  text-align: center;
}
.st-btn-ocean {
  background: var(--st-sky);
  color: var(--st-white);
  box-shadow: 0 4px 20px rgba(29, 111, 184, 0.3);
}
.st-btn-ocean:hover {
  background: var(--st-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 111, 184, 0.4);
}
.st-btn-sunset {
  background: var(--st-sunset);
  color: var(--st-white);
  box-shadow: 0 4px 20px rgba(244, 132, 95, 0.3);
}
.st-btn-sunset:hover {
  background: var(--st-sunset-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 132, 95, 0.4);
}
.st-deadline-banner {
  margin-top: 28px;
  padding: 14px 24px;
  background: rgba(244, 132, 95, 0.12);
  border: 1px solid rgba(244, 132, 95, 0.25);
  border-radius: var(--st-radius-sm);
  text-align: center;
}
.st-deadline-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--st-sunset);
}

/* --- Checklist --- */
.st-checklist-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.st-checklist-group h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-checklist {
  list-style: none;
  padding: 0;
}
.st-checklist li {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 37, 69, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.st-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--st-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}
.st-check.checked {
  background: var(--st-sky);
  border-color: var(--st-sky);
}
.st-check.checked::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--st-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.st-checklist li.checked-item {
  color: var(--st-text-soft);
  text-decoration: line-through;
  opacity: 0.6;
}
.st-checklist-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--st-foam);
  border-radius: var(--st-radius-sm);
  border-left: 3px solid var(--st-sky);
}
.st-checklist-note p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--st-text-soft);
  line-height: 1.6;
}

/* --- Gallery --- */
.st-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.st-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--st-radius-sm);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.st-gallery-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}
.st-gallery-placeholder {
  font-size: 2rem;
  opacity: 0.2;
}
.st-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.st-gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* --- Registration --- */
.st-register-box {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--st-white);
  border-radius: var(--st-radius);
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(11, 37, 69, 0.08);
  border: 1px solid rgba(11, 37, 69, 0.06);
}
.st-register-box h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 12px;
}
.st-register-box p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-text-soft);
  line-height: 1.6;
  margin-bottom: 28px;
}
.st-register-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.st-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}
.st-contact-item {
  padding: 16px;
  background: var(--st-foam);
  border-radius: var(--st-radius-sm);
}
.st-contact-item span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--st-sky);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.st-contact-item strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-deep);
}

/* --- Wave divider --- */
.st-wave-divider {
  height: 60px;
  overflow: hidden;
  position: relative;
}
.st-wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.st-wave-divider-flip {
  transform: scaleY(-1);
}

/* --- Scroll reveal --- */
.st-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.st-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Photo Contest Page --- */
.st-photo-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.st-photo-format-card {
  background: var(--st-foam);
  border-radius: var(--st-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: all 0.3s ease;
}
.st-photo-format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
}
.st-photo-format-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}
.st-photo-format-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 6px;
}
.st-photo-format-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--st-text-soft);
  line-height: 1.55;
}
.st-photo-note {
  margin-top: 28px;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(77, 163, 232, 0.08), rgba(244, 132, 95, 0.08));
  border-radius: var(--st-radius-sm);
  border: 1px dashed rgba(29, 111, 184, 0.2);
}
.st-photo-note p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--st-ocean);
  font-weight: 600;
}

.st-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.st-rule-card {
  padding: 24px 20px;
  border-radius: var(--st-radius);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--st-white);
  border: 1px solid rgba(11, 37, 69, 0.06);
}
.st-rule-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}
.st-rule-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-text);
  line-height: 1.55;
}

.st-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.st-prop-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--st-radius-sm);
  padding: 16px 18px;
  transition: all 0.25s;
}
.st-prop-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.st-ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.st-idea-card {
  background: var(--st-white);
  border-radius: var(--st-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(11, 37, 69, 0.06);
  transition: all 0.3s ease;
}
.st-idea-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
}
.st-idea-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.st-idea-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--st-deep);
  margin-bottom: 6px;
}
.st-idea-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--st-text-soft);
  line-height: 1.55;
}

.st-scoring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.st-score-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--st-foam);
  border-radius: var(--st-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--st-text);
  font-weight: 500;
  transition: all 0.2s;
}
.st-score-item:hover {
  background: rgba(77, 163, 232, 0.12);
}
.st-score-star {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.st-avoid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.st-avoid-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(244, 132, 95, 0.06);
  border: 1px solid rgba(244, 132, 95, 0.15);
  border-radius: var(--st-radius-sm);
}
.st-avoid-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.st-avoid-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-text);
  font-weight: 500;
}

.st-photo-final {
  margin-top: 32px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(77, 163, 232, 0.08), rgba(244, 132, 95, 0.08));
  border-radius: var(--st-radius);
  border: 1px dashed rgba(29, 111, 184, 0.2);
}
.st-photo-final p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--st-ocean);
  font-weight: 600;
  line-height: 1.6;
}

/* --- Responsive --- */
/* --- Menu Section --- */
.st-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.st-menu-card {
  background: linear-gradient(135deg, rgba(29, 111, 184, 0.06), rgba(244, 132, 95, 0.06));
  border: 1px solid rgba(29, 111, 184, 0.15);
  border-radius: var(--st-radius);
  padding: 20px;
  transition: all 0.3s ease;
}
.st-menu-card:hover {
  border-color: rgba(29, 111, 184, 0.3);
  box-shadow: 0 8px 24px rgba(29, 111, 184, 0.1);
  transform: translateY(-2px);
}
.st-menu-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.st-menu-icon {
  font-size: 2.4rem;
  display: block;
  flex-shrink: 0;
  margin-top: -4px;
}
.st-menu-header h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--st-deep);
  margin: 0 0 4px 0;
}
.st-menu-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--st-text-soft);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.st-menu-items {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--st-text);
  line-height: 1.5;
  margin-bottom: 10px;
}
.st-menu-prep {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--st-text-soft);
  line-height: 1.5;
  font-style: italic;
}
.st-menu-image {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin: 14px 0;
}

@media (max-width: 900px) {
  .st-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .st-activities-grid { grid-template-columns: repeat(2, 1fr); }
  .st-competitions-grid { grid-template-columns: 1fr; }
  .st-team-features { grid-template-columns: repeat(2, 1fr); }
  .st-food-grid { grid-template-columns: 1fr; }
  .st-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .st-gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .st-contact-grid { grid-template-columns: 1fr; }
  .st-register-box { padding: 36px 24px; }
  .st-photo-formats { grid-template-columns: 1fr; }
  .st-rules-grid { grid-template-columns: 1fr; }
  .st-props-grid { grid-template-columns: repeat(2, 1fr); }
  .st-ideas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .st-hero { min-height: 55vh; background-position: 40% center !important; }
  .st-hero-content { padding: 20px 16px 40px; }
  .st-section { padding: 32px 16px; }
  .st-countdown { padding: 20px 12px 16px; gap: 8px; }
  .st-countdown-unit { min-width: 60px; padding: 12px 12px 10px; }
  .st-countdown-num { font-size: 1.6rem; }
  .st-countdown-label { font-size: 0.58rem; }
  .st-activities-grid { grid-template-columns: 1fr; }
  .st-team-features { grid-template-columns: 1fr; }
  .st-checklist-columns { grid-template-columns: 1fr; }
  .st-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .st-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .st-hero-title { margin-bottom: 12px; }
  .st-hero-verse { margin: 0 auto 8px; }
  .st-hero-verse-ref { margin-bottom: 12px; }
  .st-hero-dates { margin-bottom: 4px; }
  .st-hero-tagline { margin-bottom: 20px; }
  .st-hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .st-btn { width: 100%; justify-content: center; max-width: 280px; }
  .st-nav a { padding: 10px 6px; font-size: 0.55rem; letter-spacing: 0.02em; }
  .st-nav-inner { padding: 0 6px; gap: 0; }
  .st-schedule-days { gap: 3px; margin: 20px 0 20px; flex-wrap: nowrap; }
  .st-day-tab { padding: 7px 10px; font-size: 0.6rem; white-space: nowrap; flex: 1; }
  .st-props-grid { grid-template-columns: 1fr; }
  .st-ideas-grid { grid-template-columns: 1fr; }
  .st-scoring-grid { grid-template-columns: 1fr; }
  .st-avoid-grid { grid-template-columns: 1fr; }
  .st-menu-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .st-menu-card { padding: 14px; }
  .st-menu-icon { font-size: 2rem; }
  .st-menu-header h3 { font-size: 0.95rem; }
}
