:root {
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --tint-blue: #f5f9ff;
  --tint-red: #fff7f7;
  --accent-red: #dc2626;
  --accent-blue: #2563eb;
  --accent-soft: #60a5fa;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --text: #111827;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 18px 35px rgba(15, 23, 42, 0.06);
  --ring: rgba(37, 99, 235, 0.18);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  overflow: visible;
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent-red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(220, 38, 38, 0.25);
  background: #ffffff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
}

.nav-list a:hover {
  color: var(--accent-blue);
  text-decoration: none;
}

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--accent-red);
  background: var(--accent-red);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.18);
}

.nav-cta:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 5.5rem 0 4rem;
  background: var(--tint-blue);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.1vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: var(--accent-red);
  border: 1px solid var(--accent-red);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.9);
  color: var(--accent-blue);
}

.btn-outline:hover {
  background: #eff6ff;
}

.btn-block {
  width: 100%;
}

.hero-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 0;
}

.hero-contact dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-contact dd {
  margin: 0.25rem 0 0;
  font-size: 0.98rem;
}

.hero-gallery {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.section {
  padding: 4.25rem 0;
  background: var(--surface);
}

.section + .section {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.section-alt {
  background: var(--surface-alt);
}

.section-warm {
  background: var(--surface-alt);
  border-top: 3px solid rgba(220, 38, 38, 0.12);
}

.section-warm .section-header h2::after,
.section-warm .two-column h2::after {
  background: var(--accent-red);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.6rem;
  background: var(--accent-blue);
  border-radius: 2px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
  margin-inline: auto;
}

/* Simple scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--delay-lg {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: start;
}

.about-card,
.form-card,
.map-card {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(209, 213, 219, 0.95);
  box-shadow: var(--shadow-subtle);
}

.about-quote {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0;
}

.about-note {
  margin-bottom: 0;
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent-blue);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.card-media {
  margin: -1.6rem -1.4rem 1.1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--tint-blue);
}

.card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card h3 {
  margin-top: 0.1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-age {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-list {
  list-style: none;
  padding-left: 0;
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.card-list li {
  margin-bottom: 0.35rem;
}

.card-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.schedule-column {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
}

.schedule-column h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.96rem;
}

.schedule-list li + li {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
}

.schedule-list h4 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
}

.schedule-list p {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
}

.schedule-footnote {
  margin-top: 1.6rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.schedule-download {
  margin-top: 1rem;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.day-column {
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 14px;
  padding: 1rem 0.95rem 1.05rem;
  box-shadow: var(--shadow-subtle);
  min-width: 180px;
}

.day-column h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
}

.day-note {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-red);
}

.day-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--accent-blue);
}

.day-tag--b {
  background: #0f3bbd;
}

.day-tag--ab {
  background: var(--accent-red);
}

.slot {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 0.65rem 0.65rem;
  background: #ffffff;
}

.slot + .slot {
  margin-top: 0.55rem;
}

.slot-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.slot-time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.slot-muted {
  background: #f9fafb;
}

.slot-warn {
  border-color: rgba(220, 38, 38, 0.28);
  background: #fff1f2;
}

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  color: var(--text);
  padding: 0.55rem 0.9rem;
  font: inherit;
  outline: none;
}

textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 96px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px var(--ring);
}

.form-caption {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-helper {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-details {
  margin: 1.2rem 0 0;
}

.contact-details div + div {
  margin-top: 0.65rem;
}

.contact-details dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-details dd {
  margin: 0.25rem 0 0;
}

.contact-section {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

.link-list li + li {
  margin-top: 0.35rem;
}

.link-list a {
  color: #1d4ed8;
}

.map-placeholder {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.8rem 0 2.2rem;
  background: var(--tint-blue);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-inner {
  text-align: center;
}

.footer-note {
  max-width: 32rem;
  margin: 0.3rem auto 0;
}

@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .card-grid,
  .schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    gap: 2.25rem;
  }

  .card-grid {
    gap: 1.2rem;
  }

  .hero-img {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

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

  .nav-panel {
    position: absolute;
    inset: 3.4rem 1rem auto;
    flex-direction: column;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.95);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    gap: 0.4rem;
  }

  .nav-panel--open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.25rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-img {
    height: 220px;
  }

  .section {
    padding-block: 3.5rem;
  }

  .about-card,
  .form-card,
  .map-card {
    padding-inline: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0s !important;
    transition: none !important;
  }
}

