/* ─── Local Fonts ────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('/fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('/fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Reset + Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0d2137;
  --blue-800: #1a3a52;
  --blue-700: #1b4f72;
  --blue-600: #2471a3;
  --blue-100: #d6eaf8;
  --blue-50:  #eaf4fb;

  --gold-700: #9a6e1a;
  --gold-600: #b8860b;
  --gold-500: #c5902c;
  --gold-300: #e8c870;

  --gray-900: #1a202c;
  --gray-700: #4a5568;
  --gray-500: #718096;
  --gray-400: #a0aec0;
  --gray-300: #cbd5e0;
  --gray-200: #e2e8f0;
  --gray-100: #f7fafc;
  --white:    #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  --transition: 220ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--gray-100);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--blue-900);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--blue-900);
}

.logo-text small {
  font-size: .72rem;
  color: var(--gray-500);
  letter-spacing: .03em;
  text-transform: uppercase;
}

nav { display: flex; gap: .25rem; }

.nav-link {
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.8);
  margin-top: 5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-org {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .3rem;
}

.footer-tagline { font-size: .85rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  background-color: var(--blue-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,.92) 0%,
    rgba(27,79,114,.80) 50%,
    rgba(13,33,55,.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-event {
  max-width: 700px;
  color: var(--white);
}

.hero-decoration {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  opacity: .6;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-500);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.88);
  font-size: .98rem;
}

.hero-meta svg { flex-shrink: 0; color: var(--gold-300); }

.hero-time { color: rgba(255,255,255,.65); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold-500);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(197,144,44,.35);
}

.hero-cta:hover {
  background: var(--gold-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,144,44,.45);
}

.hero-cta:active { transform: translateY(0); }

.hero-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding-bottom: 1.5rem;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ─── Events wrapper ─────────────────────────────────────── */
.events-wrapper { padding: 2rem 0 4rem; }

/* ─── Month navigation ────────────────────────────────────  */
.month-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.month-nav-inner {
  display: flex;
  gap: .375rem;
  padding: .6rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.month-nav-inner::-webkit-scrollbar { display: none; }

.month-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border-radius: 2rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.month-nav-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-100);
  color: var(--blue-700);
}

.month-nav-btn.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}

.month-nav-btn.is-active .mnb-count {
  background: rgba(255,255,255,.25);
  color: var(--white);
}

.past-toggle { border-style: dashed; }

.mnb-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 .35rem;
  background: var(--gray-100);
  border-radius: 2rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition);
}

/* ─── Month section ──────────────────────────────────────── */
.month-section { padding: 2.5rem 0 1rem; }

.month-section.is-past { opacity: .75; }

.month-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.month-line {
  width: 4px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue-700), var(--blue-100));
  border-radius: 2px;
  flex-shrink: 0;
}

.month-section.is-past .month-line {
  background: linear-gradient(to bottom, var(--gray-400), var(--gray-200));
}

.month-heading {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex: 1;
  flex-wrap: wrap;
}

.month-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-900);
}

.month-section.is-past .month-name { color: var(--gray-500); }

.month-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-400);
}

.past-badge {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-200);
  padding: .25rem .65rem;
  border-radius: 2rem;
  align-self: center;
}

.month-count {
  font-size: .85rem;
  color: var(--gray-500);
  white-space: nowrap;
  flex-shrink: 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ─── Event card ─────────────────────────────────────────── */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.event-card.is-past { opacity: .55; }
.event-card.is-past:hover { opacity: .85; }

.card-image-link { display: block; }

.card-image {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img-placeholder { width: 48px; height: 48px; }

.card-date-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: rgba(13,33,55,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: .35rem .6rem;
  text-align: center;
  line-height: 1;
  min-width: 48px;
}

.badge-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.badge-month {
  display: block;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: .1rem;
}

.card-top-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--gold-500);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.card-body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.card-meta-date {
  font-size: .8rem;
  font-weight: 500;
  color: var(--blue-600);
}

.card-meta-time {
  font-size: .8rem;
  color: var(--gray-500);
  padding: .15rem .5rem;
  background: var(--gray-100);
  border-radius: 2rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a:hover { color: var(--blue-600); }

.card-location {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.card-location svg { flex-shrink: 0; margin-top: .15rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue-700);
  margin-top: auto;
  padding-top: .5rem;
  transition: color var(--transition), gap var(--transition);
}

.card-link:hover { color: var(--blue-600); gap: .55rem; }

/* ─── Past events toggle ────────────────────────────────── */
.past-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
  color: var(--gray-400);
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.past-divider::before,
.past-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.past-events[hidden] { display: none; }

/* ─── Empty state ────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 1rem;
  color: var(--gray-400);
  text-align: center;
}

.empty-state svg { width: 60px; height: 60px; }
.empty-state p { font-size: 1rem; color: var(--gray-500); }

/* ─── About section ─────────────────────────────────────── */
.about-section {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}

.about-inner { max-width: 680px; }

.about-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: .3rem .75rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.about-inner h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1rem; }

.about-inner p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: .75rem;
}

/* ─── Event detail page ─────────────────────────────────── */
.event-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  padding-bottom: 3rem;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,33,55,.95) 0%,
    rgba(13,33,55,.55) 60%,
    rgba(13,33,55,.25) 100%
  );
}

.event-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current] { color: rgba(255,255,255,.9); }

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-500);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2rem;
  margin-bottom: .75rem;
}

.event-title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  max-width: 800px;
}

.event-body { padding: 3rem 1.25rem 4rem; }

.event-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.event-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.event-description h1,
.event-description h2,
.event-description h3 {
  font-family: var(--font-heading);
  color: var(--blue-900);
  margin: 1.5rem 0 .75rem;
}

.event-description p { margin-bottom: 1rem; }

.event-description a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-description strong { color: var(--gray-900); }

.event-description ul,
.event-description ol { padding-left: 1.5rem; margin-bottom: 1rem; }

.event-description li { margin-bottom: .35rem; }

.no-description { color: var(--gray-400); font-style: italic; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}

.sidebar-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blue-900);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--blue-100);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.detail-item dt {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .3rem;
}

.detail-item dt svg { color: var(--blue-600); }

.detail-item dd {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.detail-item dd strong { color: var(--gray-900); font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-700);
  transition: color var(--transition), gap var(--transition);
}

.back-link:hover { color: var(--blue-600); gap: .7rem; }

/* ─── Static pages (Impressum / Datenschutz) ────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 3rem 0 2.5rem;
}

.page-hero .breadcrumb { margin-bottom: .75rem; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
}

.page-body { padding: 3rem 1.25rem 5rem; }

.prose {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.prose section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prose h2 {
  font-size: 1.2rem;
  color: var(--blue-800);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--blue-100);
}

.prose h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.prose p {
  color: var(--gray-700);
  line-height: 1.8;
}

.prose ul {
  padding-left: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.prose a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.prose a:hover { color: var(--blue-800); }

.source-note { font-size: .85rem; color: var(--gray-400) !important; margin-top: .5rem; }

/* ─── 404 page ───────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  gap: 1.5rem;
}

.error-page h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--gray-200); }
.error-page h2 { font-size: 1.5rem; }
.error-page p  { color: var(--gray-500); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.btn-primary:hover { background: var(--blue-600); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .event-layout { grid-template-columns: 1fr; }
  .event-sidebar { order: -1; }
  .sidebar-card { position: static; }
}

@media (max-width: 640px) {
  .hero { min-height: 70vh; }
  .hero-decoration { display: none; }
  .event-hero { min-height: 35vh; }
  .event-body { padding: 2rem 1.25rem 3rem; }
  .month-nav { top: 56px; }
  .logo-text small { display: none; }
  .nav-link { padding: .4rem .6rem; font-size: .82rem; }
  .footer-inner { flex-direction: column; }
  .events-grid { grid-template-columns: 1fr; }
}
