/* Indo-Can Events */

:root {
  --ink: #14163a;
  --ink-2: #1d2152;
  --ink-deep: #0d0f2b;
  --gold: #f5b50a;
  --gold-2: #ffcb3d;
  --saffron: #ff8a1f;
  --pink: #c81d63;
  --red: #d52b1e;
  --green: #138808;
  --cream: #fff8ec;
  --cream-2: #f8ecd6;
  --paper: #ffffff;
  --text: #1d1b2e;
  --muted: #5d5a72;
  --line: #eadfca;
  --on-dark: rgba(255, 248, 236, 0.82);
  --on-dark-muted: rgba(255, 248, 236, 0.66);
  --radius: 18px;
  --shadow: 0 1px 2px rgba(20, 22, 58, 0.06), 0 12px 32px rgba(20, 22, 58, 0.08);
  --display: "Rozha One", Georgia, "Times New Roman", serif;
  --body: "Mukta", system-ui, -apple-system, "Segoe UI", Roboto, "Nirmala UI", sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: 0.005em; }
p { margin: 0; }

.wrap { width: min(1160px, 100% - 40px); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 10px; z-index: 100; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { left: 10px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.ic { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.8em 1.35em; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; line-height: 1.15; text-decoration: none; text-align: center;
  cursor: pointer; transition: background-color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.55em 1em; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { border-color: rgba(255, 248, 236, 0.38); color: var(--cream); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 248, 236, 0.6); }
.btn-soft { background: var(--cream); color: var(--ink); border-color: var(--line); }
.btn-soft:hover { background: var(--cream-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 22, 58, 0.95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name { font-family: var(--display); font-size: 1.5rem; color: #fff; line-height: 1; }
.brand-name span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) { color: var(--on-dark); text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.nav-links a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-links .btn { margin-left: 8px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle {
    display: grid; place-items: center; width: 46px; height: 46px;
    border: 0; border-radius: 12px; background: rgba(255, 255, 255, 0.08); color: #fff; cursor: pointer;
  }
  .bars, .bars::before, .bars::after {
    display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor;
    position: relative; transition: transform 0.2s, top 0.2s, background-color 0.2s;
  }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
  .bars::before { top: -6px; }
  .bars::after { top: 6px; }
  .nav-open .bars { background: transparent; }
  .nav-open .bars::before { top: 0; transform: rotate(45deg); }
  .nav-open .bars::after { top: 0; transform: rotate(-45deg); }

  .nav-links {
    display: none; position: absolute; top: 72px; left: -20px; right: -20px;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 8px 20px 22px; background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a:not(.btn) { padding: 13px 4px; font-size: 1.1rem; }
  .nav-links .btn { margin: 10px 0 0; padding: 0.85em; font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--ink); color: var(--cream);
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 9vw, 112px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 88% 18%, rgba(200, 29, 99, 0.34), transparent 70%),
    radial-gradient(720px 520px at 8% 100%, rgba(255, 138, 31, 0.22), transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23f5b50a' stroke-width='1.4'%3E%3Cpath d='M28 5 51 28 28 51 5 28Z'/%3E%3Cpath d='M28 16 40 28 28 40 16 28Z'/%3E%3C/g%3E%3Cpath d='M28 24.5 31.5 28 28 31.5 24.5 28Z' fill='%23ff8a1f'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(100deg, transparent 20%, #000 75%);
  mask-image: linear-gradient(100deg, transparent 20%, #000 75%);
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-greet { color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; min-height: 2em; display: flex; align-items: center; flex-wrap: wrap; gap: 0 8px; }
.hero-greet .dot { opacity: 0.6; }
.greet-rotor { display: inline-flex; align-items: center; gap: 10px; transition: opacity 0.3s, transform 0.3s; }
.greet-rotor.is-out { opacity: 0; transform: translateY(-4px); }
.greet-word { font-size: 1.2rem; }
.greet-lang {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-muted); border: 1px solid rgba(255, 248, 236, 0.2); border-radius: 999px; padding: 1px 8px;
}
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); color: #fff; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--gold); }
.lede { font-size: clamp(1.1rem, 1.7vw, 1.28rem); color: var(--on-dark); max-width: 34em; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 34px 0 0; }
.pills li {
  font-size: 0.92rem; font-weight: 500; color: var(--on-dark);
  padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(255, 248, 236, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.pills strong { color: var(--gold); }

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

/* Ticket card */
.ticket {
  position: relative; background: var(--cream); color: var(--text);
  border-radius: 22px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  transform: rotate(1.4deg);
}
@media (max-width: 900px) { .ticket { transform: none; } }
.ticket-top { display: flex; gap: 18px; align-items: flex-start; padding: 26px 26px 22px; }
.ticket-eyebrow { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.ticket-title { font-family: var(--display); font-weight: 400; font-size: clamp(1.45rem, 2.4vw, 1.75rem); color: var(--ink); }
.ticket-meta { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.ticket-perf { position: relative; margin: 0 24px; border-top: 2px dashed #dccdb1; }
.ticket-perf::before, .ticket-perf::after {
  content: ""; position: absolute; top: -15px; width: 28px; height: 28px; border-radius: 50%; background: var(--ink);
}
.ticket-perf::before { left: -38px; }
.ticket-perf::after { right: -38px; }
.ticket-bottom { padding: 22px 26px 26px; }
.ticket-prices { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 8px; }
.ticket-prices li { background: #fff; border-radius: 12px; padding: 10px 6px 8px; text-align: center; box-shadow: inset 0 0 0 1px var(--line); }
.ticket-prices span { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.2; }
.ticket-prices strong { display: block; font-family: var(--display); font-weight: 400; font-size: 1.55rem; line-height: 1.25; color: var(--ink); }

.datebadge {
  flex: none; width: 76px; text-align: center; background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: inset 0 0 0 1.5px var(--line); text-transform: uppercase;
}
.db-mon { display: block; background: var(--red); color: #fff; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; padding: 5px 0 3px; }
.db-day { display: block; font-family: var(--display); font-size: 2.3rem; line-height: 1; padding-top: 8px; color: var(--ink); }
.db-dow { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); padding: 2px 0 8px; }
.datebadge.small { width: 64px; }
.datebadge.small .db-day { font-size: 1.9rem; }
@media (max-width: 440px) {
  .ticket-top { gap: 14px; padding: 22px 20px 18px; }
  .ticket-bottom { padding: 18px 20px 22px; }
  .ticket-perf { margin: 0 20px; }
  .ticket-perf::before { left: -34px; }
  .ticket-perf::after { right: -34px; }
  .ticket-eyebrow { letter-spacing: 0.06em; }
  .datebadge { width: 62px; }
  .db-day { font-size: 1.9rem; }
}

/* Phulkari band */
.band {
  height: 16px;
  background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='16' viewBox='0 0 32 16'%3E%3Cpath d='M8 1.5 14.5 8 8 14.5 1.5 8Z' fill='%23f5b50a'/%3E%3Cpath d='M8 5 11 8 8 11 5 8Z' fill='%23c81d63'/%3E%3Cpath d='M24 1.5 30.5 8 24 14.5 17.5 8Z' fill='%23ff8a1f'/%3E%3Cpath d='M24 5 27 8 24 11 21 8Z' fill='%23138808'/%3E%3C/svg%3E") repeat-x center / 32px 16px;
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { margin-bottom: clamp(30px, 5vw, 50px); max-width: 760px; }
.eyebrow { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
.section h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); color: var(--ink); text-wrap: balance; }
.section-sub { margin-top: 12px; font-size: 1.16rem; color: var(--muted); max-width: 40em; }
.section-sub a { color: var(--pink); font-weight: 700; }

/* Featured event */
.featured { background: var(--cream); }
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: 26px; align-items: start; }
@media (max-width: 960px) { .featured-grid { grid-template-columns: minmax(0, 1fr); } }

.panel { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 3.2vw, 36px); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.fact { position: relative; padding: 16px 16px 16px 48px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact .ic { position: absolute; left: 16px; top: 18px; width: 20px; height: 20px; color: var(--saffron); }
.fact dt { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fact dd { margin: 2px 0 0; font-weight: 700; color: var(--ink); line-height: 1.35; }
.fact dd small { display: block; margin-top: 2px; font-size: 0.92rem; font-weight: 500; color: var(--muted); }
@media (max-width: 700px) {
  .facts { grid-template-columns: minmax(0, 1fr); }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
}

.lead-p { margin-top: 22px; font-size: 1.1rem; }

/* Poster */
.poster { display: block; margin-bottom: 24px; text-decoration: none; }
.poster img { width: 100%; height: auto; border-radius: 14px; background: var(--cream-2); transition: opacity 0.2s; }
.poster:hover img { opacity: 0.92; }
.poster-zoom { display: flex; justify-content: flex-end; align-items: center; gap: 6px; margin-top: 8px; color: var(--pink); font-size: 0.92rem; font-weight: 700; }
.poster:hover .poster-zoom { text-decoration: underline; }
.lightbox { padding: 0; border: 0; background: transparent; max-width: min(1200px, 96vw); max-height: 96vh; }
.lightbox::backdrop { background: rgba(8, 9, 28, 0.88); }
.lb-inner { display: flex; flex-direction: column; gap: 12px; }
.lb-inner img { max-width: 100%; max-height: calc(96vh - 64px); width: auto; margin: 0 auto; border-radius: 10px; }
.lb-bar { display: flex; justify-content: center; align-items: center; gap: 16px; }
.lb-open { color: #fff; font-weight: 700; }

/* Buying tickets */
.btn-lg { padding: 1em 1.4em; font-size: 1.1rem; }
.head-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 22px; }
.secure { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.95rem; }
.secure .ic { color: var(--green); }
.tb-secure, .tb-free { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; font-size: 0.95rem; color: var(--on-dark); }
.tb-secure .ic, .tb-free .ic { margin-top: 0.25em; color: #6fd08a; }
.tb-soldout { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 8px; color: var(--on-dark); }
.soldout-pill {
  display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--red); color: #fff;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem;
}
.ticket-more { display: block; margin-top: 12px; text-align: center; font-weight: 700; color: var(--pink); }
.sub-h { font-family: var(--body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 30px 0 12px; }

.lineup { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }
.lineup li { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 14px; background: var(--cream); }
.avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 1.35rem; color: #fff; padding-top: 3px;
  background: linear-gradient(135deg, var(--saffron), var(--pink));
}
.lineup li:nth-child(3n+2) .avatar { background: linear-gradient(135deg, var(--pink), #6a2c91); }
.lineup li:nth-child(3n) .avatar { background: linear-gradient(135deg, #2a3aa8, var(--ink)); }
.lineup strong { display: block; color: var(--ink); line-height: 1.2; font-size: 1.05rem; }
.lineup li span span { display: block; font-size: 0.9rem; color: var(--muted); line-height: 1.3; }

.schedule { list-style: none; padding: 0; margin: 0; }
.schedule li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.schedule li:last-child { border-bottom: 0; }
.s-time { font-weight: 800; color: var(--pink); }
.s-what { font-weight: 700; color: var(--ink); }

.includes { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.includes li { display: flex; gap: 10px; align-items: flex-start; }
.includes .ic { color: var(--green); margin-top: 0.3em; }

.cal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.cal-actions .btn { flex: 1 1 auto; }

.ticketbox { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: clamp(22px, 3.2vw, 34px); position: sticky; top: 96px; box-shadow: var(--shadow); }
@media (max-width: 960px) { .ticketbox { position: static; } }
.ticketbox h3 { font-family: var(--display); font-weight: 400; font-size: 2rem; color: #fff; }
.price-list { list-style: none; padding: 0; margin: 12px 0 20px; }
.price-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255, 248, 236, 0.13); font-size: 1.08rem; }
.pl-label { display: flex; align-items: baseline; gap: 12px; flex: 1; justify-content: space-between; }
.pl-buy { flex: none; padding: 0.45em 1.1em; }
.pl-none { flex: none; font-size: 0.86rem; color: var(--on-dark-muted); }

/* Ticket picker */
.qty { flex: none; display: inline-flex; align-items: center; gap: 2px; background: rgba(255, 255, 255, 0.08); border-radius: 999px; padding: 3px; }
.qty-btn {
  width: 34px; height: 34px; border: 0; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--cream); font: inherit; font-size: 1.25rem; line-height: 1;
}
.qty-btn:hover { background: rgba(255, 255, 255, 0.14); }
.qty-num {
  width: 42px; height: 34px; border: 0; border-radius: 8px; text-align: center;
  background: rgba(0, 0, 0, 0.25); color: #fff; font: inherit; font-weight: 700; -moz-appearance: textfield;
}
.qty-num::-webkit-outer-spin-button, .qty-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 18px 0 14px; font-size: 1.05rem; }
.cart-total strong { font-family: var(--display); font-weight: 400; font-size: 1.9rem; color: var(--gold); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-msg { margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(213, 43, 30, 0.18); color: #fff; font-size: 0.95rem; }
.cart-msg a { color: var(--gold); font-weight: 700; }
.price-list strong { font-family: var(--display); font-weight: 400; font-size: 1.8rem; line-height: 1; color: var(--gold); }
.tb-note { color: var(--on-dark); margin: 18px 0 12px; }
.callers { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.callers li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 10px 10px 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.06); }
.who strong { display: block; color: #fff; line-height: 1.25; }
.who span { font-size: 0.92rem; color: var(--on-dark-muted); }
.acts { display: flex; gap: 6px; flex: none; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--ink); text-decoration: none; }
.icon-btn:hover { background: var(--gold-2); }
.icon-btn.alt { background: rgba(255, 255, 255, 0.12); color: #fff; }
.icon-btn.alt:hover { background: rgba(255, 255, 255, 0.2); }
.icon-btn .ic { width: 19px; height: 19px; }

/* About */
.about, .involved { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: minmax(0, 1fr); } }
.about-p { margin-top: 18px; font-size: 1.15rem; max-width: 34em; }
.values {
  position: relative; overflow: hidden; border-radius: 24px; background: var(--ink); color: var(--cream);
  padding: clamp(28px, 4vw, 44px);
}
.values::before {
  content: ""; position: absolute; inset: 0; opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23f5b50a' stroke-width='1.4'%3E%3Cpath d='M28 5 51 28 28 51 5 28Z'/%3E%3Cpath d='M28 16 40 28 28 40 16 28Z'/%3E%3C/g%3E%3Cpath d='M28 24.5 31.5 28 28 31.5 24.5 28Z' fill='%23ff8a1f'/%3E%3C/svg%3E");
  background-size: 56px 56px;
}
.values-words { position: relative; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
.values-words span { display: block; }
.v1 { color: #ffa24a; }
.v2 { color: #ff6fa8; }
.v3 { color: #6fd08a; }
.values-note { position: relative; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 248, 236, 0.18); color: var(--on-dark); font-size: 1.15rem; font-style: italic; }

.cards-title { font-family: var(--body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: clamp(56px, 7vw, 80px) 0 18px; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 860px) { .cards { grid-template-columns: minmax(0, 1fr); } }
.card { --stripe: var(--saffron); display: flex; flex-direction: column; border-radius: var(--radius); padding: 32px 28px 28px; background: linear-gradient(var(--stripe), var(--stripe)) top / 100% 5px no-repeat, var(--cream); }
.card:nth-child(2) { --stripe: var(--pink); }
.card:nth-child(3) { --stripe: var(--green); }
.card-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--paper); color: var(--ink); margin-bottom: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.card-icon svg { width: 24px; height: 24px; }
.card h4 { font-size: 1.28rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.card p { color: var(--muted); }
.link-arrow { margin-top: auto; padding-top: 16px; font-weight: 800; color: var(--pink); text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* Events list */
.events { background: var(--cream); }
.events .wrap { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.events .section-head { margin-bottom: 0; }
@media (max-width: 860px) { .events .wrap { grid-template-columns: minmax(0, 1fr); } }
.ev-group { font-family: var(--body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.ev-list + .ev-group { margin-top: 36px; }
.ev-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.ev { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.ev.is-past .db-mon { background: var(--muted); }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--cream-2); padding: 2px 9px; border-radius: 999px; margin-bottom: 6px; }
.ev h4 { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.ev-meta { margin-top: 4px; color: var(--muted); font-size: 0.98rem; line-height: 1.45; }
.ev-desc { margin-top: 10px; }
.ev-links { margin-top: 10px; font-weight: 700; }
.ev-links a { color: var(--pink); }

/* Sponsors */
.sponsors .cards-title { text-align: center; }
.sponsor-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.sponsor-list li { display: grid; place-items: center; min-width: 160px; min-height: 84px; padding: 14px 22px; border-radius: 14px; background: var(--cream); font-weight: 800; color: var(--ink); }
.sponsor-list img { max-height: 56px; width: auto; }
.sponsor-list a { text-decoration: none; }

/* Contact */
.contact { background: var(--ink); color: var(--cream); }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--gold); }
.contact .section-sub { color: var(--on-dark); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.people { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 12px; }
.person { display: flex; flex-direction: column; padding: 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 248, 236, 0.12); }
.person strong { color: #fff; font-size: 1.1rem; line-height: 1.25; }
.person .role { font-size: 0.9rem; color: var(--on-dark-muted); }
.person .num { color: var(--gold); font-weight: 700; font-size: 1.15rem; text-decoration: none; margin-top: 2px; }
.person .acts { margin-top: 12px; }
.person .btn { flex: 1; }

/* Footer */
.footer { background: var(--ink-deep); color: var(--on-dark-muted); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 32px 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; color: #fff; line-height: 1.3; }
.footer-brand span { font-size: 0.92rem; }
.footer-meta { font-size: 0.92rem; }
.footer-meta a { color: var(--gold); }
