/* ============================================================
   Kala Sangama — ISKCON South Bengaluru
   Static marketing site styles
   ============================================================ */

:root {
  --saffron:        #e07b1a;
  --saffron-dark:   #c4630b;
  --saffron-deep:   #a8500a;
  --maroon:         #4a1d0a;
  --maroon-soft:    #6b3318;
  --cream:          #fbf8e9;
  --cream-2:        #f6efd6;
  --peach:          #f8d9b8;
  --peach-soft:     #fbe7d2;
  --gold:           #c98f2e;
  --gold-l:         #e9c46a;
  --ink:            #3a2414;
  --muted:          #7a5c44;
  --white:          #ffffff;
  --shadow:         0 10px 30px rgba(74, 29, 10, 0.10);
  --shadow-sm:      0 4px 14px rgba(74, 29, 10, 0.08);
  --radius:         16px;
  --radius-sm:      10px;
  --maxw:           1120px;
  --font-display:   "Marcellus", Georgia, serif;
  --font-body:      "Mukta", system-ui, -apple-system, sans-serif;
}

html[lang="kn"] {
  --font-display: "Noto Sans Kannada", "Marcellus", serif;
  --font-body:    "Noto Sans Kannada", "Mukta", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--font-display); color: var(--maroon); line-height: 1.2; font-weight: 400; }
a { color: var(--saffron-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--saffron); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--saffron-dark); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.28); }
.btn-outline { background: transparent; color: var(--saffron-dark); border-color: var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: #fff; }
.btn.is-pending { opacity: .72; }
.btn.is-pending::after { content: " · soon"; font-weight: 400; opacity: .8; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 29, 10, 0.08);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--maroon); }
.brand-mark { font-size: 1.7rem; color: var(--saffron); line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.2rem; }
.brand-text small { color: var(--muted); font-size: 0.72rem; letter-spacing: .02em; }

.main-nav { margin-left: auto; display: flex; gap: 22px; }
.main-nav a { color: var(--maroon-soft); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--saffron-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 18px; }
.lang-toggle {
  border: 1.5px solid var(--saffron); background: transparent; color: var(--saffron-dark);
  border-radius: 999px; padding: 6px 14px; font-size: 0.82rem; cursor: pointer; font-family: var(--font-body);
  white-space: nowrap;
}
.lang-toggle .sep { opacity: .4; margin: 0 5px; }
.lang-toggle [data-lang-label].active { color: var(--maroon); font-weight: 700; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--maroon); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, #f3a04a 0%, transparent 60%),
    linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 15% 110%, rgba(74,29,10,.35), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 78px 0 70px; max-width: 880px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-grid .hero-inner { max-width: none; padding: 60px 0 64px; }
.hero-media { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-media .video-frame { max-width: 300px; width: 100%; margin: 0; border: 1px solid rgba(255, 255, 255, 0.28); }
.hero-note { color: rgba(255, 255, 255, 0.88); font-size: 0.9rem; font-style: italic; margin: 14px 0 0; text-align: center; }

/* ---------- Founder-Acharya ---------- */
.founder { background: linear-gradient(180deg, #fff 0%, var(--cream-2) 100%); }
.founder-inner { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.founder-photo { width: 300px; aspect-ratio: 1 / 1; }
.founder-photo img { width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 10px 24px rgba(74, 29, 10, 0.22)); }
.founder-ph { display: none; }
.founder-photo.founder-fallback { display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); }
.founder-photo.founder-fallback img { display: none; }
.founder-photo.founder-fallback .founder-ph { display: block; font-size: 4rem; color: #fff; }
.founder-eyebrow { text-transform: uppercase; letter-spacing: 0.16em; color: var(--saffron-dark);
  font-weight: 700; font-size: 0.82rem; margin: 0; }
.founder-name { font-size: clamp(1.4rem, 3vw, 2.05rem); margin: 8px 0 12px; color: var(--maroon); }
.founder-body { color: var(--maroon-soft); max-width: 640px; margin: 0; }
.founder-quote { font-family: var(--font-display); font-size: 1.35rem; color: var(--saffron-dark); margin: 14px 0 16px; }
.founder-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--maroon);
  color: var(--peach-soft); padding: 8px 18px; border-radius: 999px; font-size: 0.9rem; }
.founder-badge strong { font-family: var(--font-display); color: #fff; letter-spacing: 0.04em; }

/* ---------- Theme (seniors) ---------- */
.theme-headline { font-family: var(--font-display); font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  color: var(--saffron-dark); text-align: center; margin: 4px 0; }
.theme-quote { text-align: center; font-style: italic; color: var(--maroon-soft);
  max-width: 660px; margin: 0 auto 28px; font-size: 1.08rem; }
.theme-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.theme-group { background: var(--white); border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--saffron); }
.theme-group-title { color: var(--maroon); font-size: 1.2rem; margin: 0 0 14px; }
.theme-list { list-style: none; margin: 0; padding-left: 0; display: grid; gap: 18px; }
.theme-list li { display: flex; gap: 14px; align-items: flex-start; }
.theme-ic { flex: none; width: 52px; height: 52px; border-radius: 50%; background: #e7f2e3;
  display: grid; place-items: center; }
.theme-ic svg { width: 28px; height: 28px; stroke: #2e7d32; fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; }
.theme-txt strong { display: block; color: var(--saffron-dark); margin-bottom: 2px; }
.theme-txt span { color: var(--maroon-soft); font-size: 0.96rem; }
.theme-guides { margin-top: 26px; background: var(--cream-2); border-radius: var(--radius); padding: 22px 28px; }
.theme-guides h3 { margin: 0 0 10px; color: var(--maroon); font-size: 1.15rem; }
.theme-guides ul { margin: 0; padding-left: 1.2em; color: var(--maroon-soft); display: grid; gap: 8px; }

/* ---------- Prizes ---------- */
.prize-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.prize { background: var(--white); border-radius: var(--radius); padding: 28px 18px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74, 29, 10, 0.06); }
.prize-ic { font-size: 2.7rem; display: block; margin-bottom: 10px; }
.prize strong { color: var(--maroon); font-size: 1.05rem; }

/* ---------- Register (single, centered) ---------- */
.register-inner { text-align: center; max-width: 660px; margin: 0 auto; }
.register-inner .section-lead { margin: 0 auto 8px; }
.reg-facts { display: flex; justify-content: center; gap: 46px; margin: 24px 0 28px; flex-wrap: wrap; }
.reg-facts span { display: flex; flex-direction: column; }
.reg-facts strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--maroon); }
.reg-facts small { color: var(--maroon-soft); font-size: 0.9rem; }
.btn-lg { font-size: 1.1rem; padding: 16px 42px; }

/* portrait official poster */
.poster-portrait { aspect-ratio: 210 / 297; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: 12px; top: -52px; z-index: 200; background: var(--maroon);
  color: #fff; padding: 10px 16px; border-radius: 8px; transition: top .15s ease; }
.skip-link:focus { top: 12px; }

/* ---------- Video facade (click to play) ---------- */
.video-facade { position: relative; display: block; width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer; background: #1a1a1a; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 50%;
  background: rgba(224, 123, 26, 0.92); display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.video-play::before { content: ""; border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff; margin-left: 5px; }
.video-facade:hover .video-play { background: var(--saffron-dark); }
.video-caption { color: #fff; font-weight: 600; font-size: .98rem; margin: 14px 0 0; text-align: center; opacity: .95; }

/* ---------- Prize icons (bold, in a circular badge) ---------- */
.prize-ic { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--peach-soft); border: 1px solid rgba(201, 143, 46, 0.35); }
.prize-ic svg { width: 42px; height: 42px; stroke: var(--saffron-dark); fill: none; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Venue ---------- */
.venue { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 22px; background: var(--white); border: 1px solid rgba(74,29,10,.08);
  border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.venue-info { display: flex; align-items: center; gap: 14px; }
.venue-ic { font-size: 1.6rem; }
.venue-info strong { color: var(--maroon); display: block; }
.venue-info p { margin: 2px 0 0; color: var(--maroon-soft); font-size: .95rem; }

/* ---------- Registration countdown ---------- */
.reg-countdown { display: block; width: fit-content; margin: 0 auto 18px; background: var(--maroon); color: var(--peach-soft);
  font-weight: 600; padding: 8px 18px; border-radius: 999px; font-size: .95rem; }
.reg-countdown.closed { background: #7a2b2b; }

/* ---------- Share buttons ---------- */
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.share-label { font-weight: 600; color: var(--maroon-soft); margin-right: 2px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer;
  border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .92rem; color: #fff;
  font-family: var(--font-body); text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.share-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.share-ig svg { fill: none; stroke: currentColor; stroke-width: 2; }
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ---------- Promo QR ---------- */
.promo-qr { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.promo-qr img { width: 110px; height: 110px; border: 6px solid #fff; border-radius: 10px; box-shadow: var(--shadow-sm); background: #fff; }
.promo-qr span { color: var(--maroon-soft); font-size: .95rem; max-width: 200px; }

/* ---------- Footer site link ---------- */
.footer-site { margin: 4px 0 0; }
.footer-site a { color: var(--peach-soft); opacity: .9; }
.footer-site a:hover { opacity: 1; color: #fff; }

.hero-eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 0.78rem; opacity: .92; margin: 0 0 14px; font-weight: 600; }
.hero-title { color: #fff; font-size: clamp(2.8rem, 7vw, 5rem); margin: 0; letter-spacing: .01em; text-shadow: 0 2px 20px rgba(74,29,10,.25); }
.hero-tagline { font-family: var(--font-display); font-size: clamp(1.1rem, 2.6vw, 1.6rem); margin: 12px 0 0; opacity: .95; letter-spacing: .01em; }
.hero-subtitle { font-size: clamp(1.05rem, 2.4vw, 1.4rem); margin: 8px 0 0; opacity: .96; }
.hero-theme { margin: 20px 0 0; font-size: 1.05rem; background: rgba(255,255,255,.14); display: inline-block; padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); color: #fff; text-decoration: none; transition: background .15s ease; }
.hero-theme:hover { background: rgba(255,255,255,.26); }
.hero-theme strong { font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 0; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 36px; padding: 0; margin: 42px 0 0; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-family: var(--font-display); font-size: 1.5rem; }
.hero-facts span { opacity: .9; font-size: 0.85rem; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream-2); }
.section-saffron {
  background: linear-gradient(135deg, var(--peach-soft), var(--peach));
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 0 12px; }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 720px; margin: 0 0 36px; }
.note { color: var(--muted); font-size: 0.95rem; font-style: italic; margin-top: 26px; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74,29,10,.06);
  border-top: 4px solid var(--saffron);
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--maroon-soft); }

/* ---------- Promo video ---------- */
.video-band { display: grid; grid-template-columns: 1fr minmax(280px, 360px); gap: 52px; align-items: center; }
.video-copy .section-lead { margin-bottom: 20px; }
.video-points { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.video-points li { position: relative; padding-left: 28px; color: var(--maroon-soft); font-size: 1.02rem; }
.video-points li::before { content: "✦"; position: absolute; left: 0; color: var(--saffron); }
.video-frame {
  width: 100%; max-width: 360px; margin: 0; aspect-ratio: 9 / 16;
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  background: #1a1a1a; border: 1px solid rgba(74, 29, 10, 0.1);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Categories table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--white); }
.cat-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.cat-table th, .cat-table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid rgba(74,29,10,.08); }
.cat-table thead th { background: var(--maroon); color: var(--peach); font-family: var(--font-display); font-weight: 400; font-size: 1rem; }
.cat-table tbody tr:last-child td { border-bottom: 0; }
.cat-table tbody tr:hover { background: var(--cream); }
.cat-table strong { color: var(--saffron-dark); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--peach); }
.timeline-item { position: relative; padding: 0 0 30px 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: 3px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--saffron); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--saffron); }
.timeline-item h3 { margin: 0 0 4px; font-size: 1.2rem; }
.timeline-item p { margin: 0; color: var(--maroon-soft); }

/* ---------- Register ---------- */
.reg-card { background: rgba(255,255,255,.85); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.reg-card h3 { margin: 0 0 8px; font-size: 1.4rem; }
.reg-card p { color: var(--maroon-soft); margin: 0 0 20px; }

/* ---------- Promote ---------- */
.promote-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.promo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.poster-frame {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); position: relative;
}
.poster-frame img { width: 100%; height: 100%; object-fit: cover; }
.poster-placeholder { display: none; }
.poster-frame.poster-fallback img { display: none; }
.poster-frame.poster-fallback .poster-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  position: absolute; inset: 0; color: #fff; text-align: center; padding: 24px;
}
.poster-frame.poster-fallback .poster-placeholder span { font-size: 3rem; }
.poster-frame.poster-fallback .poster-placeholder strong { font-family: var(--font-display); font-size: 2rem; }
.poster-frame.poster-fallback .poster-placeholder em { opacity: .92; }

/* ---------- Committee / Contact ---------- */
.committee { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.committee li { background: var(--white); border: 1px solid var(--peach); border-radius: 999px; padding: 9px 20px; font-weight: 600; color: var(--maroon); box-shadow: var(--shadow-sm); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-chip { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); border: 1px solid rgba(74,29,10,.06); transition: transform .15s ease; }
.contact-chip:hover { transform: translateY(-2px); }
.contact-ic { font-size: 1.5rem; width: 46px; height: 46px; display: grid; place-items: center; background: var(--peach-soft); color: var(--saffron-dark); border-radius: 50%; flex: none; }
.contact-chip strong { display: block; color: var(--maroon); }
.contact-chip small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); border: 1px solid rgba(74,29,10,.06); overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--maroon); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; color: var(--saffron); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0; padding: 0 22px 20px; color: var(--maroon-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon); color: var(--peach-soft); padding: 50px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.site-footer strong { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.site-footer p { margin: 6px 0 0; opacity: .85; font-size: 0.92rem; }
.footer-team { max-width: 360px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: var(--peach-soft); opacity: .9; }
.footer-nav a:hover { opacity: 1; color: #fff; }
.footer-founder { text-align: center; opacity: .82; font-size: 0.9rem; margin: 30px auto 0; padding: 0 20px; max-width: var(--maxw); }
.footer-bottom { text-align: center; margin: 18px 20px 0; opacity: .7; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid rgba(74,29,10,.1);
    padding: 8px 0; transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid rgba(74,29,10,.06); }
  .nav-burger { display: flex; }
  .cards-3, .cards-2, .contact-grid { grid-template-columns: 1fr; }
  .promote-inner { grid-template-columns: 1fr; }
  .poster-frame { max-width: 320px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-grid .hero-inner { padding: 60px 0 4px; }
  .hero-media .video-frame { max-width: 280px; }
  .founder-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .founder-photo { margin: 0 auto; }
  .founder-body { margin: 0 auto; }
  .theme-cols { grid-template-columns: 1fr; }
  .prize-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 54px 0; }
}

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

/* ---------- Categories as stacked cards on small screens (kept last to win the cascade) ---------- */
@media (max-width: 600px) {
  .cat-table { min-width: 0; }
  .cat-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cat-table, .cat-table tbody, .cat-table tr, .cat-table td { display: block; width: 100%; }
  .cat-table tr { border-bottom: 2px solid var(--peach); padding: 10px 4px; }
  .cat-table tr:last-child { border-bottom: 0; }
  .cat-table td { display: flex; justify-content: space-between; gap: 16px; border: 0; padding: 7px 16px; text-align: right; }
  .cat-table td::before { content: attr(data-label); color: var(--muted); font-size: .78rem;
    text-transform: uppercase; letter-spacing: .04em; text-align: left; font-weight: 600; }
  .cat-table td:first-child { background: var(--cream); border-radius: 8px; margin-bottom: 2px; }
}
