:root {
  --blue: #007fff;
  --blue-dark: #0057b3;
  --yellow: #f7d417;
  --red: #ce1021;
  --ink: #16181d;
  --ink-soft: #4a4f5a;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --border: #e7e8ef;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 24, 60, 0.08);
  --container: 1120px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 127, 255, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 127, 255, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--yellow));
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; animation: logo-spin 9s linear infinite; }
.logo:hover .logo-mark img { animation-duration: 2s; }
.logo-text {
  font-family: 'Righteous', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 55%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav a.active { color: var(--blue-dark); }
.nav a:hover { color: var(--blue); }
.nav-cta {
  color: #fff !important;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-cta:hover { color: #fff !important; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; }
.shape { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.35; }
.shape-blue { width: 340px; height: 340px; background: var(--blue); top: -120px; right: -80px; }
.shape-yellow { width: 220px; height: 220px; background: var(--yellow); bottom: -60px; left: -60px; opacity: 0.5; }
.shape-red { width: 160px; height: 160px; background: var(--red); top: 40%; right: 12%; opacity: 0.18; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 900;
}
.hero h1 span { color: var(--blue); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; scroll-margin-top: 88px; }
.hero { scroll-margin-top: 88px; }
.section-alt { background: var(--bg-alt); }
.kicker {
  color: var(--blue-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin: 0 0 12px;
}
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0 0 16px;
  max-width: 720px;
  font-weight: 800;
}
.section-lead {
  color: var(--ink-soft);
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ---------- Mission ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mission-icon svg { width: 26px; height: 26px; }
.mission-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.mission-card p { margin: 0; color: var(--ink-soft); }

/* ---------- Activities (detailed) ---------- */
.activity-feature-list { display: flex; flex-direction: column; }
.activity-feature {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.activity-feature:first-child { padding-top: 0; }
.activity-feature:last-child { border-bottom: none; padding-bottom: 0; }
.activity-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eaf2ff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.activity-feature-icon svg { width: 28px; height: 28px; }
.activity-feature-body h3 { margin: 0 0 10px; font-size: 1.25rem; }
.activity-feature-body p { margin: 0 0 16px; color: var(--ink-soft); max-width: 640px; }
.feature-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.feature-check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.feature-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

@media (max-width: 560px) {
  .activity-feature { flex-direction: column; gap: 16px; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.pricing-card-highlight {
  border-color: var(--blue);
  background: linear-gradient(180deg, #f0f7ff, #fff);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.pricing-period { color: var(--ink-soft); font-size: 0.88rem; margin: 0 0 18px; }
.price { font-size: 2.4rem; font-weight: 900; margin: 0 0 20px; color: var(--blue-dark); }
.price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.pricing-card .btn { width: 100%; }
.pricing-note { margin: 24px 0 0; color: var(--ink-soft); font-size: 0.9rem; }
.pricing-note a { color: var(--blue-dark); font-weight: 600; }

/* ---------- Adhesion form ---------- */
.form-card {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 640px;
}
.form-title { margin: 0 0 24px; font-size: 1.25rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.field input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
}
.field input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }

.form-note { margin: 16px 0 0; color: var(--ink-soft); font-size: 0.85rem; }
.form-success {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #eaf7ee;
  color: #1c6b34;
  font-size: 0.9rem;
}

/* ---------- Discover grid (home) ---------- */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.discover-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.discover-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(16,24,60,0.12); }
.discover-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.discover-icon svg { width: 26px; height: 26px; }
.discover-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.discover-card p { margin: 0 0 16px; color: var(--ink-soft); }
.discover-link { color: var(--blue-dark); font-weight: 700; font-size: 0.92rem; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  text-align: center;
}
.page-header .kicker { text-align: center; }
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  margin: 0 auto 14px;
  max-width: 720px;
}
.page-header p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Story / history page ---------- */
.story-block { max-width: 760px; margin: 0 auto 56px; }
.story-block h2 { font-size: 1.6rem; margin: 0 0 18px; }
.story-block p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 18px; }
.story-block p:last-child { margin-bottom: 0; }

.timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-step {
  position: relative;
  padding: 0 0 40px 44px;
  border-left: 2px solid var(--border);
}
.timeline-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-step::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.timeline-step p { margin: 0; color: var(--ink-soft); }

/* ---------- Gallery albums ---------- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.album-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.album-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(16,24,60,0.12); }
.album-cover { position: relative; aspect-ratio: 4 / 3; background: var(--bg-alt); }
.album-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(22,24,29,0.75);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.album-info { padding: 18px 20px; background: #fff; }
.album-info h3 { margin: 0 0 4px; font-size: 1.05rem; }
.album-info p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }

.gallery-note {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.gallery-note a { color: var(--blue-dark); font-weight: 600; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.photo-grid a, .photo-grid .photo-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  border: none;
  padding: 0;
  cursor: pointer;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.photo-grid a:hover img, .photo-grid .photo-thumb:hover img { transform: scale(1.04); }

/* ---------- Lightbox (album photo viewer) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 12, 17, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #d6d8e0;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  font-size: 0.92rem;
}
.back-link:hover { text-decoration: underline; }

/* ---------- Invitation ticket ---------- */
.invitation-body { background: #0b0c11; overflow-x: hidden; }
.invitation-page { padding: 70px 24px 100px; position: relative; min-height: 60vh; }
.invitation-page .amb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; z-index: 0; }
.invitation-page .amb-1 { width: 420px; height: 420px; background: var(--blue); top: -80px; left: -140px; }
.invitation-page .amb-2 { width: 380px; height: 380px; background: var(--red); top: 200px; right: -160px; opacity: 0.25; }
.invitation-page .amb-3 { width: 320px; height: 320px; background: var(--yellow); bottom: -100px; left: 30%; opacity: 0.18; }

.invitation-single { display: flex; flex-direction: column; align-items: center; gap: 22px; position: relative; z-index: 2; }
.print-btn { background: transparent; border-color: rgba(255,255,255,0.25); color: #fff; }
.print-btn:hover { border-color: #fff; color: #fff; }

.ticket {
  width: 420px;
  max-width: 100%;
  display: flex;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  position: relative;
}
.ticket-main, .ticket-stub { background: #fffdf8; position: relative; }
.ticket-main { width: 68%; border-radius: 18px 0 0 18px; padding: 30px 26px 24px; overflow: hidden; }
.ticket-stub {
  width: 32%;
  border-radius: 0 18px 18px 0;
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.ticket-main::before {
  content: "";
  position: absolute;
  top: -40px; right: -60px;
  width: 220px; height: 220px;
  background: image-set(url("../images/logo-mark.png") 1x);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  transform: rotate(-12deg);
  pointer-events: none;
}
.ticket-main .sweep {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(100deg, var(--blue) 0%, var(--red) 55%, var(--yellow) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
}
.perf { width: 0; border-left: 2px dashed #d8d4c8; position: relative; }
.perf::before, .perf::after {
  content: "";
  position: absolute;
  left: -11px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #0b0c11;
}
.perf::before { top: -11px; }
.perf::after { bottom: -11px; }

.inv-content { position: relative; z-index: 1; padding-top: 34px; }
.inv-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.inv-brand img { width: 24px; height: 22px; }
.inv-brand span {
  font-family: 'Righteous', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 55%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inv-kicker { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-dark); margin: 0 0 6px; }
.inv-greeting { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 2px; }
.inv-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
}
.inv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(100deg, #f7d417, #e8ac1f 45%, #ce1021 140%);
  box-shadow: 0 6px 16px rgba(206, 16, 33, 0.35);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.inv-story {
  border-left: 3px solid var(--yellow);
  padding: 2px 0 2px 14px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.6;
}
.inv-divider { height: 1px; background: var(--border); margin: 0 0 18px; }
.inv-event h3 { margin: 0 0 12px; font-size: 1rem; color: var(--ink); }
.inv-detail { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: 0.84rem; color: var(--ink-soft); }
.inv-detail svg { width: 15px; height: 15px; color: var(--blue-dark); flex-shrink: 0; }

.stub-qr { width: 88px; height: 88px; border-radius: 10px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.stub-qr svg { width: 66px; height: 66px; }
.stub-code { font-family: 'Courier New', monospace; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink); }
.stub-note { font-size: 0.66rem; color: var(--ink-soft); line-height: 1.5; }
.stub-single {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 4px 0;
}
.invitation-page .empty-state h3 { color: var(--ink); }

@media print {
  .site-header, .site-footer, .print-btn, .invitation-page .amb { display: none !important; }
  .invitation-body { background: #fff; }
  .invitation-page { padding: 20px; min-height: 0; }
}

@media (max-width: 460px) {
  .ticket { width: 100%; }
}

/* ---------- Ticketing steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Events / empty state ---------- */
.events-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
}
.event-info h3 { margin: 0 0 6px; font-size: 1.2rem; }
.event-meta { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 10px; }
.event-description { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 10px; max-width: 460px; }
.event-price { color: var(--blue-dark); font-weight: 800; font-size: 1.3rem; margin: 0; }
.event-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.event-alt-link { color: var(--ink-soft); font-size: 0.82rem; text-decoration: underline; }
.event-alt-link:hover { color: var(--blue-dark); }

/* ---------- Publications ---------- */
.publications-grid { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto 20px; }
.publication-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.publication-photo { width: 96px; height: 96px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: var(--bg-alt); }
.publication-body h3 { margin: 0 0 4px; font-size: 1.15rem; }
.publication-meta { color: var(--blue-dark); font-weight: 600; font-size: 0.85rem; margin: 0 0 12px; }
.publication-text { color: var(--ink-soft); margin: 0; white-space: pre-line; }
@media (max-width: 640px) {
  .publication-card { flex-direction: column; }
  .publication-photo { width: 100%; height: 180px; }
}

.empty-state {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 48px 36px;
}
.empty-state-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.empty-state-icon svg { width: 28px; height: 28px; }
.empty-state h3 { margin: 0 0 10px; font-size: 1.2rem; }
.empty-state p { margin: 0 0 22px; color: var(--ink-soft); }

/* ---------- Simple CTA band ---------- */
.section-cta-simple {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  text-align: center;
}
.section-cta-simple .cta-inner { max-width: 560px; margin: 0 auto; }
.section-cta-simple h2 { color: #fff; margin: 0 auto 24px; }
.section-cta-simple .btn-primary { background: #fff; color: var(--blue-dark); box-shadow: none; }
.section-cta-simple .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d8dae2; padding: 64px 0 24px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-mark { margin-bottom: 12px; }
.footer-brand .logo-text { font-weight: 800; margin-left: 8px; }
.footer-brand p { margin-top: 14px; color: #9a9db0; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: #fff; margin: 0 0 16px; font-size: 0.95rem; }
.footer-col a, .footer-col p { display: block; color: #9a9db0; text-decoration: none; margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-note { font-size: 0.8rem !important; color: #6b6e7f !important; margin-top: -6px !important; }
.socials { display: flex; gap: 16px; margin-top: 8px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; }
#footer-email, #footer-address { display: flex; align-items: center; gap: 8px; }
.footer-icon { flex-shrink: 0; opacity: 0.75; }
.footer-bottom { padding-top: 24px; text-align: center; color: #6b6e7f; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 18px;
  }
  .site-header.open .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    align-self: stretch;
    text-align: center;
  }
  .form-card { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
}
