/* -------------------------------------------------
   GLOBAL
------------------------------------------------- */

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

body {
  font-family: 'Archivo', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: #fffbf5;
  color: #1a1a1a;
  min-height: 100vh;
}

.events-root {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 1rem 1.2rem 3rem;
}


/* -------------------------------------------------
   HERO SECTION
------------------------------------------------- */

.page-hero {
  text-align: center;
  padding: 2.8rem 1.5rem 2rem;
  background: transparent;
  position: relative;
}

/* Foreground motifs — above content */
.foreground-motifs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}

.fg-motif {
  position: absolute;
  user-select: none;
}

.fg-motif-lightning {
  width: 90px;
  bottom: 12%;
  right: -18px;
  transform: rotate(12deg);
  opacity: 0.85;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.18));
}

.fg-motif-pacman {
  width: 100px;
  top: 38%;
  left: -22px;
  transform: rotate(-15deg) scaleX(-1);
  opacity: 0.9;
  filter: drop-shadow(-2px 4px 6px rgba(0,0,0,0.15));
}

@media (max-width: 600px) {
  .fg-motif-lightning { width: 64px; right: -12px; }
  .fg-motif-pacman    { width: 72px; left: -16px;  }
}

/* Scattered motifs — fixed full-page layer */
.page-motifs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

body > *:not(.page-motifs) {
  position: relative;
  z-index: 1;
}

.motif {
  position: absolute;
  opacity: 0.11;
  user-select: none;
}

/* Lightning bolt — far left, near top */
.motif-1  { width: 64px;  top: 4%;   left: 3%;    transform: rotate(-15deg); }
/* Starburst — far right, near top */
.motif-2  { width: 88px;  top: 3%;   right: 4%;   transform: rotate(10deg);  }
/* Purple star — left-center, high */
.motif-3  { width: 70px;  top: 12%;  left: 22%;   transform: rotate(-22deg); opacity: 0.09; }
/* Diamond — right-center, high */
.motif-4  { width: 58px;  top: 14%;  right: 20%;  transform: rotate(8deg);   }
/* 4-point star — center */
.motif-5  { width: 52px;  top: 8%;   left: 50%;   transform: rotate(20deg);  opacity: 0.08; }
/* Moon — far right, upper-mid */
.motif-6  { width: 72px;  top: 28%;  right: 6%;   transform: rotate(-30deg); }
/* Green star — left, mid */
.motif-7  { width: 66px;  top: 38%;  left: 8%;    transform: rotate(18deg);  }
/* Pink ring — right-center, mid */
.motif-8  { width: 80px;  top: 32%;  right: 24%;  transform: rotate(-5deg);  opacity: 0.09; }
/* Outline star — center-left, lower-mid */
.motif-9  { width: 60px;  top: 52%;  left: 28%;   transform: rotate(-12deg); }
/* Blue arc — far right, lower-mid */
.motif-10 { width: 74px;  top: 58%;  right: 5%;   transform: rotate(25deg);  }
/* Green arc — far left, lower */
.motif-11 { width: 68px;  top: 68%;  left: 4%;    transform: rotate(-20deg); }
/* Pink arc — center-right, lower */
.motif-12 { width: 60px;  top: 74%;  right: 28%;  transform: rotate(40deg);  }
/* Orange pacman — center, mid */
.motif-13 { width: 76px;  top: 46%;  left: 55%;   transform: rotate(-8deg);  opacity: 0.09; }
/* Yellow pacman — center-left, bottom */
.motif-14 { width: 70px;  top: 84%;  left: 18%;   transform: rotate(15deg);  }
/* Blue blob — far right, bottom */
.motif-15 { width: 90px;  top: 87%;  right: 3%;   transform: rotate(-18deg); opacity: 0.08; }
/* Cream blob — center-right, bottom */
.motif-16 { width: 80px;  top: 92%;  left: 60%;   transform: rotate(30deg);  opacity: 0.08; }

@media (max-width: 600px) {
  .motif { opacity: 0.08; }
  .motif-1  { width: 44px; }
  .motif-2  { width: 56px; }
  .motif-3, .motif-5, .motif-8, .motif-13 { display: none; }
  .motif-4  { width: 40px; }
  .motif-6  { width: 50px; }
  .motif-7  { width: 46px; }
  .motif-9  { width: 42px; }
  .motif-10 { width: 50px; }
  .motif-11 { width: 46px; }
  .motif-12 { width: 42px; }
  .motif-14 { width: 48px; }
  .motif-15 { width: 58px; }
  .motif-16 { width: 54px; }
}


.hero-logo {
  width: clamp(200px, 55vw, 420px);
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

.page-hero .tagline {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: #444;
  margin: 0.5rem 0 1.4rem;
  line-height: 1.55;
}

.page-hero .tagline-sub {
  font-size: clamp(0.9rem, 2.4vw, 1.02rem);
  color: #666;
  margin: 0;
}

.page-hero h2 {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-hero hr {
  border: none;
  border-top: 1.5px solid #e0e0e0;
  margin: 1.2rem auto;
  max-width: 320px;
}

/* Social Row */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0.8rem 0 1.2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  border-color: #aaaaaa;
}

.social-icon img {
  display: block;
  width: 22px;
  height: 22px;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}

.social-icon:hover img {
  opacity: 1;
}

@keyframes social-attn-wiggle {
  0%, 88%, 100% { transform: rotate(0deg); }
  90%  { transform: rotate(-12deg); }
  92%  { transform: rotate(10deg); }
  94%  { transform: rotate(-8deg); }
  96%  { transform: rotate(6deg); }
  98%  { transform: rotate(-3deg); }
}

.social-icon-attn {
  animation: social-attn-wiggle 4s ease-in-out infinite;
  transform-origin: center center;
}

.social-icon-attn-2 {
  animation-delay: 0.4s;
}

.social-icon-attn:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .social-icon-attn { animation: none; }
}

@media (max-width: 480px) {
  .social-icon {
    width: 38px;
    height: 38px;
  }
  .social-icon img {
    width: 19px;
    height: 19px;
  }
}


/* -------------------------------------------------
   WEEKLY VIEW
------------------------------------------------- */

.week-view {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.week-view-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  padding: 0.8rem 1.1rem;
  background: #fafafa;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.week-view-title::-webkit-details-marker { display: none; }

/* Highlighted workshops box */
.workshop-view {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37,99,235,0.18);
}

.workshop-view .week-view-title {
  background: #eef3ff;
  color: #1e40af;
}

.workshop-view[open] .week-view-title {
  border-bottom-color: #2563eb;
}

.workshop-flag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 0.12rem 0.45rem;
  margin-right: 0.5rem;
  letter-spacing: 0.12em;
}

.week-view[open] .week-view-title {
  border-bottom: 1.5px solid #e0e0e0;
}

.week-view-chevron {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.week-view[open] .week-view-chevron {
  transform: rotate(180deg);
}

.week-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.week-item {
  border-bottom: 1px solid #f0f0f0;
  border-left: 4px solid transparent;
}

.week-item:last-child {
  border-bottom: none;
}

.week-item-link {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.week-item-link:hover {
  background: #fafafa;
}

html { scroll-behavior: smooth; }
.event-card { scroll-margin-top: 1rem; }

.week-item.event-type-show     { border-left-color: #f5c400; }
.week-item.event-type-jam      { border-left-color: #2ecc71; }
.week-item.event-type-workshop { border-left-color: #2563eb; }

.week-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 0.2rem 0.4rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  line-height: 1.1;
}

.week-day {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}

.week-daynum {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
}

.week-month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

.week-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.week-type-tag {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.1rem 0.45rem;
  margin-top: 0.2rem;
  border: 1.5px solid currentColor;
}

.week-type-show     { color: #c9a100; }
.week-type-jam      { color: #1faa58; }
.week-type-workshop { color: #2563eb; }

.week-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.02em;
}

.week-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .week-item { padding: 0.65rem 0.85rem; gap: 0.8rem; }
  .week-date { min-width: 48px; }
  .week-daynum { font-size: 1.1rem; }
  .week-name { font-size: 0.92rem; }
}


/* -------------------------------------------------
   EVENT CARDS
------------------------------------------------- */

.event-card {
  border: 1.5px solid #e0e0e0;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1.6rem;
  background: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.event-card:not(.event-flip-face):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

.event-card-body {
  padding: 1.3rem 1.5rem 1.4rem;
}

@media (max-width: 480px) {
  .event-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }
}

.empty-state {
  text-align: center;
  color: #7a6a5a;
  font-size: 1.1rem;
  margin: 4rem 0;
  padding: 2.5rem;
  background: #fff;
  border: 1.5px dashed #e0e0e0;
}

.empty-state h2 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.warning {
  font-size: 0.88rem;
  color: #999;
  margin-top: 0.8rem;
}


/* -------------------------------------------------
   EVENT KEY
------------------------------------------------- */

.event-key {
  display: flex;
  gap: 0.6rem;
  margin: 0 0 1.8rem;
  flex-wrap: wrap;
}

.event-key-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  padding: 0.55rem 0.9rem;
  flex: 1;
  min-width: 140px;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

button.event-key-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: #bbb;
}

button.event-key-item[aria-pressed="true"] {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

button.event-key-item[aria-pressed="true"] p {
  color: #d0d0d0;
}

.page-section + .page-section {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1.5px dashed #e0e0e0;
}

.section-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid #e0e0e0;
}

.tagline-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: #1a1a1a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.tagline-link:hover {
  color: #555;
}

.section-jump {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1.5px dashed #d0d0d0;
  color: #555;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.section-jump:hover {
  color: #1a1a1a;
  border-color: #1a1a1a;
  background: #fafafa;
}

.section-jump-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.section-jump:hover .section-jump-arrow {
  transform: translateY(3px);
}

.section-sub {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 1.4rem;
}

.event-key-clear {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  background: transparent;
  border: 1px solid #e0e0e0;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  align-self: stretch;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.event-key-clear:hover {
  color: #1a1a1a;
  border-color: #1a1a1a;
  background: #fafafa;
}

.event-key-clear span {
  font-size: 0.85rem;
  line-height: 1;
}

.filter-empty {
  text-align: center;
  color: #7a6a5a;
  font-size: 1rem;
  margin: 1rem 0 2rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1.5px dashed #e0e0e0;
}

.filter-empty h2 {
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.filter-empty p {
  margin: 0;
  font-size: 0.9rem;
}

.events-root.filter-show .event-flip:not(.event-type-show),
.events-root.filter-jam  .event-flip:not(.event-type-jam) {
  display: none;
}

.event-key-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.event-key-item p {
  margin: 0;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.3;
}

.event-key-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
}

.dot-show     { background: #f5c400; }
.dot-jam      { background: #2ecc71; }
.dot-workshop { background: #2563eb; }


/* -------------------------------------------------
   EVENT TYPE BADGE + STRIP
------------------------------------------------- */

.event-type-show     { border-top: 4px solid #f5c400; }
.event-type-jam      { border-top: 4px solid #2ecc71; }
.event-type-workshop { border-top: 4px solid #2563eb; }

.event-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.55rem;
  border: 1.5px solid currentColor;
}

.event-type-show     .event-type-badge { color: #c9a100; }
.event-type-jam      .event-type-badge { color: #1faa58; }
.event-type-workshop .event-type-badge { color: #2563eb; }


/* -------------------------------------------------
   EVENT IMAGE (POSTER)
------------------------------------------------- */

.event-image {
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
  line-height: 0;
}

.event-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.025);
}

@media (max-width: 480px) {
  .event-image img {
    max-height: 240px;
  }
}


/* -------------------------------------------------
   EVENT TEXT
------------------------------------------------- */

.event-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  color: #1a1a1a;
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 0.22rem 0.65rem;
  margin-bottom: 0.8rem;
}

.event-excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
  color: #444;
}


/* -------------------------------------------------
   BUTTONS
------------------------------------------------- */

.event-buttons {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.58rem 1.1rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
  border: 1.5px solid #1a1a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.28);
}

.btn-ghost {
  border: none;
  color: #999;
  background: transparent;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.btn-ghost:hover {
  color: #444;
}


/* -------------------------------------------------
   FLIP CARD
------------------------------------------------- */

.event-flip {
  perspective: 1600px;
  margin-bottom: 1.6rem;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
}

.event-flip.event-type-show {
  box-shadow:
    0 0 0 4px rgba(245, 196, 0, 0.18),
    0 8px 28px rgba(245, 196, 0, 0.22);
}

.event-flip.event-type-jam {
  box-shadow:
    0 0 0 4px rgba(46, 204, 113, 0.18),
    0 8px 28px rgba(46, 204, 113, 0.22);
}

.event-flip.event-type-workshop {
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.18),
    0 8px 28px rgba(37, 99, 235, 0.22);
}

.event-flip.event-type-show:hover {
  box-shadow:
    0 0 0 4px rgba(245, 196, 0, 0.28),
    0 14px 38px rgba(245, 196, 0, 0.32);
}

.event-flip.event-type-jam:hover {
  box-shadow:
    0 0 0 4px rgba(46, 204, 113, 0.28),
    0 14px 38px rgba(46, 204, 113, 0.32);
}

.event-flip.event-type-workshop:hover {
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.28),
    0 14px 38px rgba(37, 99, 235, 0.32);
}

.event-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.event-flip.is-flipped .event-flip-inner {
  transform: rotateY(180deg);
}

.event-flip-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  margin-bottom: 0;
  transition: none;
  -webkit-tap-highlight-color: transparent;
}

.event-flip-front {
  position: relative;
}

.event-flip-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

.event-flip.is-flipped .event-flip-front {
  pointer-events: none;
}

.event-flip:not(.is-flipped) .event-flip-back {
  pointer-events: none;
}

.event-flip-back .event-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-flip-back .event-buttons {
  margin-top: auto;
}

.event-flip-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  border-top: 1px solid #f4f4f4;
  background: transparent;
  cursor: pointer;
  padding: 0.42rem 1.5rem;
  font-family: inherit;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b0b0b0;
  transition: color 0.15s ease;
}

.event-flip-trigger:hover {
  color: #777;
}

.event-expect-body p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}

.event-expect-body p + p {
  margin-top: 0.55rem;
}

.event-expect-body strong {
  color: #1a1a1a;
  font-weight: 700;
}

.event-flip-back .event-expect-body {
  margin: 0.4rem 0 1.1rem;
}

@media (max-width: 480px) {
  .event-flip-trigger { padding: 0.4rem 1.1rem; }
}


/* -------------------------------------------------
   PROMO CARD
------------------------------------------------- */

.book-offer-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.book-offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  padding: 0.7rem 0.85rem;
}

.book-offer-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.book-offer-list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.15rem;
}

.book-offer-list p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
}

.book-cta-line {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 0 1rem;
}

.book-card .event-type-badge {
  color: #1a1a1a;
  background: #fff;
}

.promo-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #f5f5f5 100%);
  border-color: #e0e0e0;
  border-style: dashed;
}

.promo-card .event-title {
  color: #1a1a1a;
}


/* -------------------------------------------------
   FOOTER
------------------------------------------------- */

.footer {
  text-align: center;
  font-size: 0.82rem;
  color: #b0a09a;
  padding: 2rem 0 1.2rem;
  letter-spacing: 0.02em;
}

.footer a {
  color: #8a7a72;
  text-decoration: none;
}

.footer a:hover {
  color: #1a1a1a;
}
