/* ================================================
   HERO CAMP 2026 — Comic Book Style
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Noto+Sans+JP:wght@400;700;900&display=swap');

/* ---- Variables ---- */
:root {
  --red:    #E63030;
  --yellow: #FFD600;
  --blue:   #1A3A8F;
  --black:  #111111;
  --white:  #FFFFFF;
  --cream:  #FFF9EC;
  --comic:  'Bangers', cursive;
  --body:   'Noto Sans JP', sans-serif;
  --panel:  4px solid #111111;
  --shadow: 6px 6px 0 #111111;
  --shadow-sm: 4px 4px 0 #111111;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; scroll-margin-top: 60px; }

/* ---- Panel gutter (comic page divider between sections) ---- */
.panel-gutter {
  height: 14px;
  background: var(--black);
  position: relative;
  z-index: 10;
}

/* ---- Halftone background (stronger dots) ---- */
.halftone-bg {
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(17,17,17,0.18) 2px, transparent 2px);
  background-size: 18px 18px;
}

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 52px; }

.tag {
  display: inline-block;
  font-family: var(--comic);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 20px;
  border: 3px solid var(--black);
  /* Double-border caption-box effect */
  outline: 3px solid var(--black);
  outline-offset: 3px;
  box-shadow: 4px 4px 0 var(--black);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--comic);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--black);
  /* Stronger ink-outline effect */
  text-shadow:
    4px 4px 0 var(--yellow),
    -1px -1px 0 var(--yellow),
     1px -1px 0 var(--yellow),
    -1px  1px 0 var(--yellow);
}

/* ---- Comic card (double-border panel style) ---- */
.comic-card {
  background: var(--white);
  border: 4px solid var(--black);
  /* Inner double-border via outline */
  outline: 3px solid var(--black);
  outline-offset: -10px;
  box-shadow: 7px 7px 0 var(--black);
  padding: 28px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.comic-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 11px 11px 0 var(--black);
}

.card-title {
  font-family: var(--comic);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--red);
  border-bottom: 2px solid var(--black);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

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

/* ================================================
   NAVBAR
   ================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--comic);
}
.logo-main { font-size: 1.35rem; color: var(--yellow); letter-spacing: 0.08em; }
.logo-year { font-size: 1.05rem; color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  display: block;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.nav-links li a:hover { background: var(--yellow); color: var(--black); }

.nav-cta {
  font-family: var(--comic) !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em;
  background: var(--red) !important;
  color: var(--white) !important;
  border: 2px solid var(--yellow) !important;
  padding: 5px 16px !important;
}
.nav-cta:hover { background: var(--yellow) !important; color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
  min-height: 100svh;
  padding: 80px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
  /* Speed-lines + scan-line texture layered */
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 3px,
      rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
    ),
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      #b81e1e 0deg 4deg,
      #e63030 4deg 9deg
    );
}

/* Yellow wedge behind character side */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 50%, rgba(255,214,0,0.15) 50%);
  pointer-events: none;
}

/* ---- Action burst decorations ---- */
.burst-deco {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--comic);
  font-weight: 400;
  color: var(--black);
  z-index: 3;
  pointer-events: none;
  /* 16-pointed explosion burst shape */
  clip-path: polygon(
    50% 0%, 54% 16%, 63% 7%, 62% 22%,
    75% 14%, 70% 29%, 85% 25%, 75% 39%,
    92% 42%, 77% 51%, 90% 62%, 73% 63%,
    82% 78%, 66% 73%, 67% 90%, 54% 81%,
    50% 99%, 46% 81%, 33% 90%, 34% 73%,
    18% 78%, 26% 63%, 10% 62%, 23% 51%,
    8% 42%, 25% 39%, 15% 25%, 30% 29%,
    25% 14%, 38% 22%, 37% 7%, 46% 16%
  );
}

.bd-pow {
  width: 130px; height: 130px;
  background: var(--yellow);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  bottom: 22%;
  right: 6%;
  transform: rotate(-12deg);
}
.bd-bam {
  width: 88px; height: 88px;
  background: var(--white);
  font-size: 0.95rem;
  top: 18%;
  right: 30%;
  transform: rotate(18deg);
}
.bd-zap {
  width: 72px; height: 72px;
  background: var(--yellow);
  font-size: 0.8rem;
  top: 12%;
  left: 8%;
  transform: rotate(-8deg);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  flex: 1 1 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--comic);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--yellow);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-shadow:
    5px 5px 0 var(--black),
    -2px -2px 0 var(--black),
    2px -2px 0 var(--black),
    -2px  2px 0 var(--black);
  margin-bottom: 14px;
}

.hero-subtitle {
  display: inline-block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  background: var(--black);
  padding: 4px 14px;
  transform: rotate(-1.5deg);
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border: 2px solid var(--yellow);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--comic);
  font-size: 1.65rem;
  letter-spacing: 0.1em;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 36px;
  border: 4px solid var(--black);
  /* Double-border for extra comic weight */
  outline: 3px solid var(--black);
  outline-offset: 3px;
  box-shadow: 10px 10px 0 var(--black);
  transition: transform 0.14s, box-shadow 0.14s;
  cursor: pointer;
  position: relative;
  /* Subtle pulse to draw the eye */
  animation: btn-pulse 2.4s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 10px 10px 0 var(--black); }
  50%       { box-shadow: 12px 12px 0 var(--black); }
}
.btn-primary:hover {
  transform: translate(6px, 6px);
  box-shadow: 4px 4px 0 var(--black);
  animation: none;
}
.btn-primary span { font-size: 1.25rem; }

.btn-secondary {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding-bottom: 2px;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.btn-secondary:hover { opacity: 1; }

/* Hero character image */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.character-box {
  width: 280px;
  height: 360px;
  background: var(--yellow);
  border: var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.char-emoji { font-size: 5.5rem; line-height: 1; }
.char-note  { font-size: 0.8rem; font-weight: 700; color: var(--black); opacity: 0.4; text-align: center; line-height: 1.5; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.7;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   ABOUT
   ================================================ */
.about-lead {
  text-align: center;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.card-icon { font-size: 2.4rem; margin-bottom: 12px; }

.comic-card p { font-size: 0.95rem; line-height: 1.9; text-align: center; }

.time-num {
  font-family: var(--comic);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.fee-num {
  font-family: var(--body);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--red);
}

.venue-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.venue-link:hover { opacity: 0.75; }

.big-num {
  font-family: var(--comic);
  font-size: 3.6rem;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

/* ================================================
   PROGRAM
   ================================================ */
.program-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--panel);
  overflow: hidden;
}

.day-panel {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  border-right: var(--panel);
}
.day-panel:last-child { border-right: none; }

.day1 { background: var(--red);   color: var(--white); }
.day2 { background: var(--blue);  color: var(--white); }
.day3 { background: var(--yellow); color: var(--black); }

.day-label {
  font-family: var(--comic);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  opacity: 0.75;
  margin-bottom: 4px;
}

.day-date {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.88;
  margin-bottom: 12px;
}

.day-title {
  font-family: var(--comic);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Watermark action word */
.day-splash {
  font-family: var(--comic);
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: 8px;
  right: 10px;
  opacity: 0.22;
  transform: rotate(18deg);
  pointer-events: none;
  line-height: 1;
}

.day-schedule {
  font-size: 0.88rem;
  line-height: 2.1;
  opacity: 0.9;
  margin-bottom: 20px;
}
.day-schedule li::before { content: '▸ '; font-size: 0.65rem; }

.day-theme {
  font-size: 0.88rem;
  padding: 8px 12px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
}
.day3 .day-theme {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.15);
}

.program-note {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-top: 18px;
}

/* ================================================
   PACKING
   ================================================ */
.packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.packing-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.packing-card { text-align: left; }

.red-title { color: var(--red) !important; }

.check-list li {
  padding: 6px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed #ddd;
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }

.fee-card {
  background: var(--yellow);
  text-align: center;
}
.fee-card .card-title { color: var(--black); border-bottom-color: var(--black); }
.fee-card .fee-text {
  font-family: var(--body);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 8px;
}
.fee-sub { font-size: 0.82rem; opacity: 0.65; }

.ng-card { border-color: var(--red); }
.ng-card .card-title { color: var(--red); }
.ng-list li {
  padding: 6px 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed #ddd;
}
.ng-list li:last-child { border-bottom: none; }

/* ================================================
   BUS
   ================================================ */
.bus-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bus-route {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--cream);
  border: var(--panel);
  box-shadow: var(--shadow);
  padding: 36px 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.route-node { text-align: center; }
.route-icon { font-size: 3rem; margin-bottom: 8px; }
.route-node strong { font-size: 1.05rem; font-weight: 900; display: block; }

.route-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bus-icon { font-size: 2.4rem; }
.route-free {
  font-size: 0.75rem;
  font-weight: 900;
  background: var(--red);
  color: var(--white);
  padding: 2px 10px;
  border: 1px solid var(--black);
}

/* Speech bubble */
.speech-bubble {
  position: relative;
  background: var(--white);
  border: var(--panel);
  box-shadow: var(--shadow);
  padding: 24px 30px;
  max-width: 600px;
  border-radius: 6px;
}
/* Tail (triangle pointing up toward the route diagram) */
.speech-bubble::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 64px;
  border-left:  13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 22px solid var(--black);
}
.speech-bubble::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 67px;
  border-left:  10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--white);
}
.speech-bubble p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.speech-bubble p:last-child { margin-bottom: 0; }
.speech-bubble a { color: var(--red); font-weight: 700; text-decoration: underline; }

/* ---- Bus schedule timetable ---- */
.bus-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 100%;
  max-width: 600px;
}
.bus-schedule-card { padding: 22px 24px; }
.bus-time-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed #ddd;
}
.bus-time-list li:last-child { border-bottom: none; }
.bus-time {
  font-family: var(--comic);
  font-size: 1.05rem;
  color: var(--red);
  flex-shrink: 0;
  width: 56px;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: var(--panel);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: background 0.15s;
}
.faq-q-btn:hover { background: rgba(255,214,0,0.25); }
.faq-item.open .faq-q-btn { background: var(--yellow); border-bottom: 2px solid var(--black); }

.faq-q-label, .faq-a-label {
  flex-shrink: 0;
  font-family: var(--comic);
  font-size: 1.5rem;
  width: 26px;
  letter-spacing: 0.04em;
}
.faq-q-label { color: var(--red); }
.faq-a-label { color: var(--blue); }

.faq-toggle {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.28s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border-top: 2px solid var(--black);
}
.faq-item.open .faq-answer { display: flex; }
.faq-answer p { font-size: 0.95rem; line-height: 1.85; padding-top: 4px; }

/* ================================================
   ACCESS
   ================================================ */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 28px;
  align-items: start;
}

.access-card { text-align: left; }
.access-church-name {
  font-family: var(--comic);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--red);
  border-bottom: 2px solid var(--black);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.access-list li {
  padding: 10px 0;
  font-size: 0.92rem;
  line-height: 1.7;
  border-bottom: 1px dashed #ccc;
}
.access-list li:last-child { border-bottom: none; }

.map-wrapper iframe {
  border: var(--panel) !important;
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
}

/* ================================================
   REGISTER
   ================================================ */
.register-section {
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      #132d72 0deg 6deg,
      #1a3a8f 6deg 12deg
    );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.register-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,214,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.register-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 0;
}

.action-burst {
  font-family: var(--comic);
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--black);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  line-height: 1;
}

.register-title {
  font-family: var(--comic);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.register-lead {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 28px;
  opacity: 0.9;
}

.register-deadline {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 8px 22px;
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  margin-bottom: 44px;
}

.btn-register {
  display: inline-block;
  font-family: var(--comic);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  background: var(--yellow);
  color: var(--black);
  padding: 18px 60px;
  border: 4px solid var(--black);
  /* Double-border for extra comic weight */
  outline: 3px solid var(--black);
  outline-offset: 3px;
  box-shadow: 10px 10px 0 var(--black);
  transition: transform 0.14s, box-shadow 0.14s;
  cursor: pointer;
  margin-bottom: 36px;
  animation: btn-pulse 2.4s ease-in-out infinite;
}
.btn-register:hover {
  transform: translate(6px, 6px);
  box-shadow: 4px 4px 0 var(--black);
  animation: none;
}

.register-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: -14px;
  margin-bottom: 22px;
}

.register-contact {
  font-size: 0.92rem;
  line-height: 2;
  opacity: 0.8;
}
.register-contact a { color: var(--yellow); font-weight: 700; }
.register-contact a:hover { text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 44px 24px;
  text-align: center;
}
.footer-logo {
  font-family: var(--comic);
  font-size: 1.75rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer-church { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.footer-addr   { font-size: 0.82rem; opacity: 0.6; margin-bottom: 6px; }
.footer-contact { font-size: 0.82rem; opacity: 0.6; margin-bottom: 0; }
.footer-contact a { color: var(--yellow); opacity: 1; }
.footer-legal { margin-top: 18px; font-size: 0.78rem; }
.footer-legal a { color: var(--white); opacity: 0.6; text-decoration: underline; }
.footer-legal a:hover { opacity: 1; }
.footer-copy { margin-top: 14px; font-size: 0.72rem; opacity: 0.38; }

/* ================================================
   CHARACTERS
   ================================================ */
.hero-title-img {
  display: block;
  max-width: 320px;
  margin-bottom: 14px;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.5));
}

.hero-char {
  width: 100%;
  max-width: 380px;
  display: block;
  filter: drop-shadow(6px 10px 0 rgba(0,0,0,0.4));
  animation: char-float 3.2s ease-in-out infinite;
}
@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.day-panel {
  display: flex;
  flex-direction: column;
}
.day-char {
  display: block;
  width: 100px;
  align-self: flex-end;
  margin-top: auto;
  padding-top: 12px;
  filter: drop-shadow(2px 4px 0 rgba(0,0,0,0.22));
  transition: transform 0.22s;
  pointer-events: none;
}
.day-panel:hover .day-char { transform: scale(1.1) rotate(-5deg); }

.register-char {
  position: absolute;
  bottom: 0;
  right: 4%;
  width: 210px;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.35));
  pointer-events: none;
  z-index: 2;
}

/* ================================================
   RESPONSIVE — Tablet (≤ 960px)
   ================================================ */
@media (max-width: 960px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .program-panels {
    grid-template-columns: 1fr;
  }
  .day-panel {
    border-right: none;
    border-bottom: var(--panel);
  }
  .day-panel:last-child { border-bottom: none; }

  .packing-grid {
    grid-template-columns: 1fr;
  }
  .access-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .register-char { display: none; }
}

/* ================================================
   RESPONSIVE — Mobile (≤ 640px)
   ================================================ */
@media (max-width: 640px) {
  section { padding: 64px 0; }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    padding: 12px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 10px 14px; display: block; }

  /* Hero mobile */
  #hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 20px 52px;
  }
  .hero-badges { justify-content: center; }
  .hero-cta    { justify-content: center; }
  .hero-visual { display: none; }

  /* Burst decorations — smaller and pushed to corners */
  .bd-zap { width: 50px; height: 50px; font-size: 0.55rem; top: 10%; left: 2%; }
  .bd-bam { width: 54px; height: 54px; font-size: 0.6rem;  top: 6%;  right: 2%; }
  .bd-pow { width: 76px; height: 76px; font-size: 0.85rem; bottom: 3%; right: 2%; }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

.bus-route { padding: 24px 20px; gap: 20px; }

  .bus-schedule-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-register { font-size: 1.2rem; padding: 12px 24px; }
}

@media (max-width: 400px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-title  { font-size: clamp(4rem, 22vw, 5rem); }
}
