/* =========================================================
   Knæk Cancer Aabybro 2026
   Hovedapp: varm rød/hvid · Galla: midnat & guld
   ========================================================= */

:root {
  --red: #E2003B;
  --red-deep: #A6002B;
  --red-dark: #7A0020;
  --blush: #FFE4E8;
  --paper: #FFF7F4;
  --card: #FFFFFF;
  --ink: #33121D;
  --ink-soft: #8A6570;
  --line: #F3D9DC;
  --gold: #C9A227;

  --g-bg: #14101B;
  --g-bg2: #1E1726;
  --g-card: #241B2E;
  --g-gold: #E3C46B;
  --g-gold-soft: #A98F4D;
  --g-cream: #F5EBD8;
  --g-line: #3A2E48;

  --disp: "Fraunces", Georgia, serif;
  --body: "Schibsted Grotesk", -apple-system, sans-serif;

  --tab-h: 64px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --r-lg: 22px;
  --r-md: 16px;
  --shadow: 0 10px 30px -12px rgba(122, 0, 32, .25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

/* Desktop: vis som telefon-søjle */
#phone { max-width: 480px; margin: 0 auto; min-height: 100dvh; position: relative; }
@media (min-width: 520px) {
  body { background: #F1E4E0; }
  #phone { box-shadow: 0 0 0 1px var(--line), 0 30px 80px -30px rgba(122,0,32,.35); background: var(--paper); }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }

/* =============== SPLASH =============== */
#splash {
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 70%, var(--red-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: #fff; text-align: center;
  animation: splashOut .5s ease 1.7s forwards;
}
#splash.gone { display: none; }
.splash-heart { font-size: 56px; animation: heartBeat 1.1s ease infinite; }
.splash-title { font-family: var(--disp); font-weight: 800; font-size: 34px; line-height: 1.05; letter-spacing: -.01em; }
.splash-year { font-size: 13px; letter-spacing: .22em; text-transform: uppercase; opacity: .85; font-weight: 600; }
.splash-sponsor {
  position: absolute; bottom: calc(28px + var(--safe-b));
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .95;
  color: inherit; text-decoration: none;
}
.splash-sponsor img { width: 74px; border-radius: 14px; }
@keyframes splashOut { to { opacity: 0; visibility: hidden; } }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
}

/* =============== SHELL =============== */
#view {
  padding-bottom: calc(var(--tab-h) + var(--safe-b) + 24px);
  outline: none;
  animation: viewIn .35s ease;
}
@keyframes viewIn { from { opacity: 0; transform: translateY(6px); } }

.wrap { padding: 0 18px; }

/* =============== TABBAR =============== */
#tabbar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 50;
  height: calc(var(--tab-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr 92px 1fr 1fr;
  align-items: stretch;
}
.tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-soft); transition: color .2s, transform .15s;
  text-decoration: none;
}
.tab-galla { text-decoration: none; }
.tab svg { width: 23px; height: 23px; }
.tab.active { color: var(--red); }
.tab:active { transform: scale(.93); }

.tab-galla { position: relative; display: flex; align-items: flex-start; justify-content: center; }
.tab-galla .bubble {
  position: absolute; top: -26px;
  width: 62px; height: 62px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #FF5C7E, var(--red) 55%, var(--red-deep));
  box-shadow: 0 8px 22px -6px rgba(166, 0, 43, .55), inset 0 -3px 8px rgba(0,0,0,.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; border: 3px solid var(--paper);
  transition: transform .15s;
}
.tab-galla:active .bubble { transform: scale(.93); }
.tab-galla .bubble .b-ico { font-size: 21px; line-height: 1; }
.tab-galla .bubble .b-txt { font-size: 8.5px; font-weight: 800; letter-spacing: .14em; margin-top: 1px; }
.tab-galla .under { margin-top: 40px; font-size: 10px; font-weight: 600; color: var(--ink-soft); }

/* Galla-tema for tabbar */
body.gala #tabbar { background: rgba(20, 16, 27, .92); border-top-color: var(--g-line); grid-template-columns: repeat(5, 1fr); }
body.gala .tab { color: #9A8AA8; }
body.gala .tab.active { color: var(--g-gold); }
body.gala .tab-galla .bubble {
  background: radial-gradient(circle at 32% 28%, #F7E3A8, var(--g-gold) 55%, #8A7027);
  border-color: var(--g-bg); color: var(--g-bg);
  box-shadow: 0 8px 22px -6px rgba(227, 196, 107, .4), inset 0 -3px 8px rgba(0,0,0,.25);
}
body.gala .tab-galla .under { color: #9A8AA8; }

/* =============== HJEM =============== */
.hero {
  background: linear-gradient(165deg, var(--red) 0%, var(--red-deep) 78%, var(--red-dark) 100%);
  color: #fff;
  padding: max(20px, env(safe-area-inset-top)) 22px 62px;
  border-radius: 0 0 34px 34px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(340px 200px at 110% -10%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(260px 180px at -14% 110%, rgba(0,0,0,.22), transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; }
.jub-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(100deg, #F7E3A8, var(--g-gold) 60%, #B8973F);
  color: #4A3708;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,.35);
  animation: fadeUp .5s ease both;
}
.hero h1 {
  font-family: var(--disp); font-weight: 800; font-size: 40px; line-height: .98;
  letter-spacing: -.015em; margin: 16px 0 10px;
  animation: fadeUp .5s ease .08s both;
}
.hero h1 em { font-style: italic; font-weight: 600; }
.hero .lede { font-size: 14.5px; line-height: 1.5; opacity: .92; max-width: 34ch; animation: fadeUp .5s ease .16s both; }
.hero .stats {
  display: flex; gap: 18px; margin-top: 20px;
  animation: fadeUp .5s ease .24s both;
}
.hero .stat b { display: block; font-family: var(--disp); font-size: 21px; font-weight: 700; }
.hero .stat span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } }

/* Nedtælling — flyder over hero-kanten */
.next-card {
  margin: -44px 18px 0;
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative; z-index: 2;
  border: 1px solid var(--line);
  animation: fadeUp .5s ease .3s both;
}
.next-card .nc-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 7px;
}
.next-card .nc-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.next-card h2 { font-family: var(--disp); font-size: 23px; font-weight: 700; margin: 8px 0 3px; line-height: 1.1; }
.next-card .nc-when { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.countdown { display: flex; gap: 8px; margin-top: 14px; }
.cd-box {
  flex: 1; text-align: center;
  background: var(--blush); border-radius: 13px; padding: 9px 4px 7px;
}
.cd-box b { display: block; font-family: var(--disp); font-size: 22px; font-weight: 800; color: var(--red-deep); font-variant-numeric: tabular-nums; }
.cd-box span { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.next-card .nc-live {
  margin-top: 14px; background: var(--red); color: #fff;
  border-radius: 13px; padding: 12px 14px; font-weight: 700; font-size: 14px;
  text-align: center;
}

/* Tidslinje */
.tl-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 30px 0 4px;
}
.tl-head h3 { font-family: var(--disp); font-size: 22px; font-weight: 700; }
.tl-head span { font-size: 12px; color: var(--ink-soft); font-weight: 600; }

.timeline { position: relative; padding: 14px 0 6px; }
.timeline::before {
  content: ""; position: absolute; left: 15px; top: 20px; bottom: 26px;
  width: 2px; background: var(--line); border-radius: 2px;
}
.ev {
  position: relative; padding: 0 0 16px 44px;
}
.ev .dot {
  position: absolute; left: 7px; top: 16px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--card); border: 2.5px solid var(--red);
  z-index: 1; display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #fff;
}
.ev-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 15px;
  box-shadow: 0 4px 16px -10px rgba(122,0,32,.18);
}
.ev-date {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 4px;
}
.ev h4 { font-family: var(--disp); font-size: 17.5px; font-weight: 700; line-height: 1.15; }
.ev .ev-place { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }
.ev .ev-desc { font-size: 13.5px; line-height: 1.5; margin-top: 7px; color: #55323E; }
.ev .ev-note { font-size: 12px; color: var(--ink-soft); font-style: italic; margin-top: 5px; }
.ev-badge {
  display: inline-block; margin-top: 9px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--blush); color: var(--red-deep);
  padding: 4px 10px; border-radius: 999px;
}
.ev-link {
  display: inline-block; margin-top: 9px; margin-left: 6px;
  font-size: 12px; font-weight: 700; color: var(--red);
  text-decoration: none; border-bottom: 1.5px solid var(--blush);
}
.ev.gala-ev .ev-card {
  background: linear-gradient(150deg, var(--g-bg2), var(--g-bg));
  border-color: var(--g-line); color: var(--g-cream);
}
.ev.gala-ev .ev-card h4 { color: var(--g-gold); }
.ev.gala-ev .ev-date { color: var(--g-gold); }
.ev.gala-ev .ev-place { color: #B4A6C4; }
.ev.gala-ev .ev-desc { color: #D8CCE4; }
.ev.gala-ev .ev-badge { background: rgba(227,196,107,.15); color: var(--g-gold); }

/* Afholdt */
.ev.done { opacity: .62; }
.ev.done .dot { background: var(--red); border-color: var(--red); }
.ev.done .ev-card { background: #FBF1F2; box-shadow: none; }
.ev.done h4 { color: #6E4A55; }
.ev.done .ev-date { color: var(--ink-soft); }
.ev.done .ev-badge.done-badge { background: #EADDE0; color: #6E4A55; }
.ev.now .dot { animation: pulse 1.6s ease infinite; background: var(--red); border-color: var(--red); }

/* Sponsor-kort */
.sponsor-card {
  margin-top: 26px;
  background: #2B5B6F;
  border-radius: var(--r-lg);
  color: #F4EFEB;
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 30px -14px rgba(43, 91, 111, .5);
  text-decoration: none;
  transition: transform .15s;
}
.sponsor-card:active { transform: scale(.97); }
.sp-visit {
  display: inline-block; margin-top: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  background: rgba(244, 239, 235, .16);
  padding: 5px 11px; border-radius: 999px;
}
.credit-link { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.sponsor-card img { width: 62px; border-radius: 14px; flex-shrink: 0; }
.sponsor-card .sp-label { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.sponsor-card .sp-name { font-family: var(--disp); font-size: 19px; font-weight: 700; margin: 2px 0; }
.sponsor-card p { font-size: 12.5px; line-height: 1.45; opacity: .85; }

/* =============== SIDE-HEADER (undersider) =============== */
.page-head {
  padding: max(22px, env(safe-area-inset-top)) 18px 16px;
}
.page-head .ph-kicker {
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red);
}
.page-head h1 { font-family: var(--disp); font-size: 32px; font-weight: 800; letter-spacing: -.01em; margin-top: 4px; }
.page-head p { font-size: 14px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }

/* =============== MINDER =============== */
.year-chips {
  position: sticky; top: 0; z-index: 10;
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 10px 18px;
  background: linear-gradient(var(--paper) 78%, transparent);
}
.year-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  font-size: 13.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  background: var(--card); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .2s;
}
.chip.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 6px 16px -6px rgba(226,0,59,.5); }

.year-sec { padding: 6px 18px 4px; }
.year-sec h3 {
  font-family: var(--disp); font-size: 26px; font-weight: 800;
  display: flex; align-items: baseline; gap: 10px;
  margin: 14px 0 10px;
}
.year-sec h3 span { font-size: 12px; font-family: var(--body); font-weight: 600; color: var(--ink-soft); }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.pgrid button {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--blush);
}
.pgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.pgrid button:active img { transform: scale(1.06); }

.fab-random {
  position: fixed; right: max(16px, calc(50% - 224px));
  bottom: calc(var(--tab-h) + var(--safe-b) + 18px);
  z-index: 40;
  display: flex; align-items: center; gap: 9px;
  background: linear-gradient(120deg, var(--red), var(--red-deep));
  color: #fff; font-weight: 800; font-size: 14px;
  padding: 13px 19px; border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(166,0,43,.6);
  transition: transform .15s;
}
.fab-random:active { transform: scale(.94); }

.photos-empty {
  margin: 30px 18px; padding: 34px 22px; text-align: center;
  background: var(--card); border: 1.5px dashed var(--line); border-radius: var(--r-lg);
  color: var(--ink-soft); font-size: 14px; line-height: 1.6;
}
.photos-empty b { color: var(--ink); }

/* =============== VIEWER =============== */
.viewer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(12, 6, 9, .97);
  display: flex; flex-direction: column;
  animation: viewIn .25s ease;
}
.viewer[hidden] { display: none; }
.viewer-stage { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.viewer-stage img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  animation: photoIn .3s ease;
}
@keyframes photoIn { from { opacity: 0; transform: scale(.97); } }
.viewer-close {
  position: absolute; top: max(14px, env(safe-area-inset-top)); right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; font-size: 16px;
}
.viewer-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 72px; color: rgba(255,255,255,.75); font-size: 38px;
  display: flex; align-items: center; justify-content: center;
}
.viewer-nav.prev { left: 2px; } .viewer-nav.next { right: 2px; }
.viewer-meta {
  padding: 14px 18px calc(18px + var(--safe-b));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: #E8D8DC; font-size: 13px; font-weight: 600;
}
.viewer-shuffle {
  background: rgba(255,255,255,.14); color: #fff;
  font-size: 13px; font-weight: 700; padding: 9px 15px; border-radius: 999px;
}

/* =============== DONÉR =============== */
.donate-hero {
  margin: 8px 18px 0;
  background: linear-gradient(160deg, var(--red), var(--red-deep) 80%);
  border-radius: var(--r-lg); color: #fff;
  padding: 26px 22px; text-align: center;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.donate-hero::before {
  content: "💗"; position: absolute; font-size: 150px; opacity: .1;
  right: -30px; bottom: -40px; transform: rotate(-12deg);
}
.donate-hero .dh-heart { font-size: 44px; animation: heartBeat 1.3s ease infinite; }
.donate-hero h2 { font-family: var(--disp); font-size: 26px; font-weight: 800; margin: 8px 0 6px; }
.donate-hero p { font-size: 13.5px; line-height: 1.5; opacity: .92; }
.mp-card {
  margin: 16px 18px 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; text-align: center; box-shadow: 0 4px 16px -10px rgba(122,0,32,.18);
}
.mp-card .mp-label { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.mp-number {
  font-family: var(--disp); font-size: 38px; font-weight: 800; letter-spacing: .04em;
  color: var(--ink); margin: 8px 0 2px; font-variant-numeric: tabular-nums;
}
.mp-number.pending { font-size: 22px; color: var(--ink-soft); font-style: italic; font-weight: 600; }
.mp-placeholder-note { font-size: 11.5px; color: var(--ink-soft); font-style: italic; margin-top: 2px; }
.gala-donate .mp-placeholder-note { color: #9A8AA8; }
.mp-open {
  display: block; margin-top: 14px;
  background: #5A78FF;
  color: #fff; font-weight: 800; font-size: 15.5px;
  padding: 15px; border-radius: 15px; text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(90,120,255,.55);
  transition: transform .15s;
}
.mp-open:active { transform: scale(.97); }
.mp-open.disabled { background: #C9CBD8; box-shadow: none; pointer-events: none; }
.mp-copy { margin-top: 11px; font-size: 13px; font-weight: 700; color: var(--red); }
.donate-note { margin: 18px 26px 0; text-align: center; font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }

/* =============== OM =============== */
.about-card {
  margin: 4px 18px 14px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
}
.about-card p { font-size: 14.5px; line-height: 1.65; }
.mile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 18px; }
.mile {
  background: var(--blush); border-radius: var(--r-md); padding: 15px 14px;
}
.mile b { display: block; font-family: var(--disp); font-size: 20px; font-weight: 800; color: var(--red-deep); }
.mile span { font-size: 11.5px; line-height: 1.4; color: #6E4A55; display: block; margin-top: 3px; }
.contact-list { margin: 14px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.contact-list a {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 17px; text-decoration: none; font-size: 14.5px; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.contact-list a:last-child { border-bottom: 0; }
.contact-list .ci { font-size: 19px; }
.contact-list .arrow { margin-left: auto; color: var(--ink-soft); }
.credits { text-align: center; font-size: 11.5px; color: var(--ink-soft); margin: 22px 30px 0; line-height: 1.7; }

/* =============== GALLA =============== */
body.gala { background: var(--g-bg); }
body.gala #phone { background: var(--g-bg); }
@media (min-width: 520px) {
  body.gala { background: #0B0810; }
  body.gala #phone { box-shadow: 0 0 0 1px var(--g-line), 0 30px 80px -30px rgba(0,0,0,.8); }
}
body.gala #view { color: var(--g-cream); }

.gala-head {
  position: relative; overflow: hidden;
  padding: max(24px, env(safe-area-inset-top)) 22px 26px;
  background:
    radial-gradient(420px 240px at 85% -20%, rgba(227,196,107,.20), transparent 65%),
    linear-gradient(165deg, #241B2E, var(--g-bg) 75%);
  border-bottom: 1px solid var(--g-line);
}
.gala-head .gh-exit {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: #B4A6C4;
  margin-bottom: 16px; text-decoration: none;
  background: rgba(255,255,255,.07); padding: 8px 14px; border-radius: 999px;
}
.gala-head .gh-kicker {
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--g-gold);
}
.gala-head h1 {
  font-family: var(--disp); font-weight: 700; font-style: italic;
  font-size: 33px; letter-spacing: -.01em; line-height: 1.02;
  margin-top: 7px;
  background: linear-gradient(100deg, #F7E3A8 10%, var(--g-gold) 45%, #F7E3A8 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto;
  animation: goldShine 5s linear infinite;
}
@keyframes goldShine { to { background-position: 200% center; } }
.gala-head .gh-date { font-size: 12.5px; color: #B4A6C4; margin-top: 9px; font-weight: 600; }
.gala-divider {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  color: var(--g-gold-soft); font-size: 11px; letter-spacing: .3em;
}
.gala-divider::before, .gala-divider::after { content: ""; flex: 1; height: 1px; background: var(--g-line); }

.gala-section { padding: 20px 18px 4px; }
.gala-section .gs-intro { font-size: 13.5px; line-height: 1.6; color: #C8BCD6; margin-bottom: 16px; }

/* Galla-program */
.gp-item {
  position: relative; padding: 0 0 18px 56px;
}
.gp-item::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: -4px;
  width: 1.5px; background: var(--g-line);
}
.gp-item:last-child::before { display: none; }
.gp-time {
  position: absolute; left: 0; top: 0;
  font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--g-gold);
  background: var(--g-bg); padding: 2px 0;
  width: 42px;
}
.gp-item h4 { font-size: 15.5px; font-weight: 700; color: var(--g-cream); }
.gp-item p { font-size: 13px; color: #B4A6C4; line-height: 1.5; margin-top: 3px; }

/* Auktion / lotteri-kort */
.g-card {
  background: var(--g-card); border: 1px solid var(--g-line);
  border-radius: var(--r-md); overflow: hidden; margin-bottom: 13px;
}
.g-card .gc-img {
  aspect-ratio: 16/9;
  background:
    radial-gradient(200px 110px at 70% 20%, rgba(227,196,107,.16), transparent 60%),
    linear-gradient(150deg, #2E2338, #1B1424);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-gold-soft); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  gap: 8px;
}
.g-card .gc-body { padding: 14px 16px 16px; }
.g-card .gc-num {
  font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--g-gold);
}
.g-card h4 { font-family: var(--disp); font-size: 18px; font-weight: 700; color: var(--g-cream); margin: 4px 0 2px; }
.g-card .gc-sponsor { font-size: 11.5px; color: #9A8AA8; font-weight: 600; }
.g-card p { font-size: 13px; line-height: 1.55; color: #C8BCD6; margin-top: 8px; }
.g-card .gc-val {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  color: var(--g-gold); border: 1px solid var(--g-gold-soft);
  padding: 4px 10px; border-radius: 999px;
}
.g-pill {
  display: inline-block; margin-bottom: 16px;
  background: rgba(227,196,107,.12); border: 1px solid var(--g-line);
  color: var(--g-gold); font-size: 12.5px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
}

/* Menu */
.menu-course { text-align: center; padding: 18px 10px 20px; border-bottom: 1px dashed var(--g-line); }
.menu-course:last-of-type { border-bottom: 0; }
.menu-course .mc-del {
  font-size: 10.5px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--g-gold);
}
.menu-course h4 { font-family: var(--disp); font-style: italic; font-size: 21px; font-weight: 600; color: var(--g-cream); margin: 7px 0 5px; }
.menu-course p { font-size: 13px; color: #B4A6C4; line-height: 1.55; max-width: 30ch; margin: 0 auto; }
.menu-note { text-align: center; font-size: 12px; color: #9A8AA8; font-style: italic; margin-top: 14px; }

/* Bar */
.bar-group { margin-bottom: 20px; }
.bar-group h4 {
  font-family: var(--disp); font-size: 18px; font-weight: 700; color: var(--g-gold);
  margin-bottom: 8px;
}
.bar-row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 0; font-size: 14px;
}
.bar-row .dots { flex: 1; border-bottom: 1.5px dotted var(--g-line); transform: translateY(-3px); }
.bar-row .price { font-weight: 700; color: var(--g-gold); font-variant-numeric: tabular-nums; }

/* Donation-strip i galla */
.gala-donate {
  margin: 22px 18px 8px;
  border: 1px solid var(--g-gold-soft);
  background: linear-gradient(150deg, rgba(227,196,107,.1), transparent);
  border-radius: var(--r-lg); padding: 18px; text-align: center;
}
.gala-donate .gd-label { font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--g-gold); }
.gala-donate .mp-number { color: var(--g-cream); font-size: 30px; margin: 6px 0 2px; }
.gala-donate .mp-number.pending { color: #9A8AA8; font-size: 18px; }
.gala-donate .mp-open { margin-top: 12px; }
.gala-footer {
  text-align: center; font-size: 11px; color: #9A8AA8; margin: 18px 30px 0; line-height: 1.7;
}
.gala-footer img { width: 46px; margin: 8px auto 0; border-radius: 10px; opacity: .9; }

/* =============== DIVERSE =============== */
.toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(var(--tab-h) + var(--safe-b) + 20px);
  background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 11px 20px; border-radius: 999px; z-index: 95;
  animation: viewIn .25s ease;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
