:root {
  --blue: #1478a9;
  --blue-deep: #07557f;
  --blue-dark: #06364f;
  --green: #82bd3e;
  --green-deep: #5f9d28;
  --red: #ef3f2e;
  --red-deep: #b9231d;
  --sky: #e7f6fb;
  --cream: #fbfaf3;
  --ink: #102334;
  --muted: #62798b;
  --line: #dceaf0;
  --white: #ffffff;
  --yellow: #be7b00;
  --yellow-soft: #fff5d6;
  --green-soft: #eef9e5;
  --red-soft: #fff0ee;
  --shadow: 0 24px 70px rgba(7, 85, 127, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(130, 189, 62, .13), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(20, 120, 169, .12), transparent 28rem),
    var(--cream);
  line-height: 1.55;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 26% 22%, rgba(130, 189, 62, .95) 0 15rem, transparent 15.1rem),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .18) 0 17rem, transparent 17.1rem),
    linear-gradient(135deg, var(--blue-deep), var(--blue) 58%, #1b91bf);
  padding: 22px 18px 116px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -80px -8%;
  height: 180px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 34px solid rgba(255,255,255,.11);
  z-index: -1;
  animation: float-soft 7s ease-in-out infinite;
}
.topbar, .section, .hero-inner, .footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.brand-mark {
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--blue-deep);
  background: white;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.language-select {
  border: 1px solid rgba(255,255,255,.32);
  color: white;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(14px);
}
.language-select option { color: var(--ink); }
.hero-inner { position: relative; z-index: 2; }
.hero-inner h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.55rem, 8vw, 5.8rem);
  line-height: .93;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-inner p {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: rgba(255,255,255,.92);
}
.hero-note, .eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.quick-actions, .hero-badges, .filters, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-actions { margin-top: 28px; }
.hero-badges { margin-top: 24px; }
.hero-badges span {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(840px, 100%);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  background: rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
}
.hero-info-panel div {
  padding: 18px 20px;
  background: rgba(255,255,255,.09);
}
.hero-info-panel span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-info-panel strong {
  display: block;
  font-size: 1.05rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #102334; box-shadow: 0 14px 30px rgba(95,157,40,.28); }
.btn-light { background: white; color: var(--blue-deep); border: 1px solid var(--line); }
.btn-danger { background: var(--red); color: white; box-shadow: 0 14px 34px rgba(239,63,46,.24); }
.btn-ghost { background: rgba(255,255,255,.14); color: white; border: 1px solid rgba(255,255,255,.22); }

.stork-flight {
  position: absolute;
  width: min(32vw, 300px);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.16));
}
.stork-flight-one {
  right: 8%;
  top: 150px;
  animation: stork-glide 8s ease-in-out infinite;
}
.stork-flight svg { width: 100%; overflow: visible; }
.stork-body, .stork-wing { fill: #fff; stroke: #1e1d21; stroke-width: 3; }
.stork-wing-dark { fill: #1f1d21; }
.stork-neck { fill: #fff; stroke: #1e1d21; stroke-width: 3; }
.stork-beak, .stork-leg { fill: var(--red); }
@keyframes stork-glide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  45% { transform: translate3d(-24px, -16px, 0) rotate(2deg); }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.section { padding: 62px 0; }
.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.03;
  color: var(--blue-dark);
  text-wrap: balance;
}
.section-lead { color: var(--muted); max-width: 760px; margin: 0 0 26px; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,120,169,.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7,85,127,.08);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: .9;
}
.reveal-card { animation: card-rise .65s ease both; }
.reveal-card:nth-child(2n) { animation-delay: .06s; }
.reveal-card:nth-child(3n) { animation-delay: .12s; }
@keyframes card-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .2s ease; }
.card p:last-child { margin-bottom: 0; }
.info-card { grid-column: span 3; min-height: 148px; }
.wide { grid-column: span 6; }
.full { grid-column: 1 / -1; }
.card h3, .card h4 { margin: 0 0 8px; color: var(--blue-dark); }
.muted { color: var(--muted); }
.coordinator-card {
  background:
    linear-gradient(135deg, rgba(130,189,62,.14), transparent 42%),
    rgba(255,255,255,.96);
}
.coordinator-card::before {
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
}
.coordinator-card .tag {
  margin-bottom: 10px;
  color: white;
  background: var(--green-deep);
}
.mini-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-weight: 900;
}
.filters { margin: 24px 0; }
.filter-btn {
  border: 1px solid rgba(20,120,169,.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: white;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 900;
}
.filter-btn.is-active { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 12px 28px rgba(20,120,169,.2); }
.place-card { grid-column: span 4; }
.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 5px 10px;
  font-size: .8rem;
  font-weight: 900;
}
.button-row { margin-top: 14px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.schedule-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.route-day {
  padding: 0;
  background: linear-gradient(180deg, white, #f6fbfd);
  border: 0;
  box-shadow: 0 22px 55px rgba(7,85,127,.14);
}
.route-day::before {
  height: 0;
}
.schedule-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px;
  color: white;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}
.schedule-date span { font-weight: 900; font-size: 1.25rem; }
.schedule-date strong {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.16);
}
.route-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 24px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}
.route-item::before,
.route-item::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
}
.route-item::before { left: -10px; }
.route-item::after { right: -10px; }
.route-item:first-of-type { border-top: 0; }
.time {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 950;
  font-size: 1.22rem;
}
.route-line {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(239,63,46,.12), 0 0 0 1px white inset;
}
.route-line::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  width: 2px;
  height: 54px;
  background: repeating-linear-gradient(to bottom, rgba(20,120,169,.35) 0 6px, transparent 6px 12px);
}
.route-item:last-child .route-line::after { display: none; }
.status-pill {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 950;
  background: #e8f5fb;
  color: var(--blue-deep);
  white-space: nowrap;
}
.status-pill.soon { background: var(--yellow-soft); color: var(--yellow); animation: pulse 1.4s infinite; }
.status-pill.departed { background: #edf0f3; color: var(--muted); }
@keyframes pulse { 50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(130,189,62,.16); } }

.table-wrap {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(7,85,127,.08);
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: linear-gradient(135deg, #eef8fc, #f2faea); color: var(--blue-dark); }
tr:hover td { background: #fbfdf6; }

.qa-form textarea, .admin-login input, .answer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px;
  background: white;
}
.hp { position: absolute; left: -9999px; }
.qa-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  margin-top: 12px;
  box-shadow: 0 12px 30px rgba(7,85,127,.08);
}
.question-status { display: inline-flex; border-radius: 999px; padding: 5px 10px; font-size: .8rem; font-weight: 900; }
.question-status.waiting { color: var(--yellow); background: var(--yellow-soft); }
.question-status.answered, .answer-box { color: var(--green-deep); background: var(--green-soft); }
.answer-box { border-radius: 14px; padding: 13px; font-weight: 800; }
.form-error { color: var(--red); font-weight: 900; }
.emergency {
  background:
    radial-gradient(circle at 12% 0, rgba(239,63,46,.11), transparent 26rem),
    linear-gradient(180deg, #fff7f5, #fff);
  border-top: 1px solid #ffd3ce;
  border-bottom: 1px solid #ffd3ce;
}
.emergency-card { border-color: #ffc5bd; }
.emergency-card::before { background: linear-gradient(90deg, var(--red), var(--green)); }
.emergency-card .button-row .btn {
  flex: 1 1 210px;
}
.phrase-card { grid-column: span 4; }
.phrase-card strong { color: var(--green-deep); font-size: 1.18rem; }
.footer {
  background:
    radial-gradient(circle at 20% 0, rgba(130,189,62,.22), transparent 22rem),
    var(--blue-dark);
  color: white;
  padding: 38px 0 96px;
}
.footer a { color: #b9ec7f; }
.mobile-nav {
  position: fixed;
  z-index: 30;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(6,54,79,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.mobile-nav a {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: .78rem;
  font-weight: 900;
  padding: 9px 4px;
  border-radius: 15px;
}
.mobile-nav a:last-child { background: var(--red); }

.admin-body { background: #f5f9fb; }
.admin-shell { width: min(920px, calc(100% - 32px)); margin: 30px auto; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.admin-question { margin: 14px 0; }
.admin-question.is-hidden { opacity: .68; }
.question-meta, .admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.question-meta span { background: #e8f5fb; border-radius: 999px; padding: 4px 9px; font-size: .8rem; font-weight: 900; }
.answer-form { display: grid; gap: 10px; margin-top: 14px; }
.skeleton {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, #eef8fc, #fff, #eef8fc);
  background-size: 220% 100%;
  animation: shine 1.2s infinite;
}
@keyframes shine { to { background-position-x: -220%; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
@media (max-width: 920px) {
  .stork-flight-one { opacity: .33; right: -20px; top: 170px; width: 240px; }
  .schedule-shell { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topbar { margin-bottom: 42px; align-items: flex-start; }
  .hero { padding-bottom: 80px; }
  .grid, .split { display: block; }
  .info-card, .place-card, .route-day, .phrase-card, .wide { margin-bottom: 14px; }
  .route-item { grid-template-columns: 1fr; align-items: start; }
  .route-line { display: none; }
  .quick-actions .btn { width: 100%; }
  .hero-badges span { flex: 1 1 auto; text-align: center; }
  .hero-info-panel { grid-template-columns: 1fr; border-radius: 20px; }
  .hero-info-panel div { padding: 14px 16px; }
}
