/* ===========================================================
   ØYFESTIVALEN 2026 — Maritime Nordic Modernism
   "Hand-Inked Maritime Whimsy"
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Coastal Wash palette */
  --fjord:    #21445B;  /* deep fjord blue   */
  --fjord-2:  #1B2A35;  /* charcoal blue ink */
  --sand:     #F5F2EA;  /* warm sand / cream */
  --sand-2:   #EDE7D7;  /* slightly deeper paper */
  --coral:    #D17A63;  /* faded warm coral  */
  --teal:     #90B1B0;  /* weathered teal    */
  --accent:   #EBC76B;  /* sun-bleached driftwood yellow */
  --ink:      #1B2A35;

  --ink-rgb: 27, 42, 53;

  --maxw: 1180px;
  --grain: 0.5;        /* controlled by Tweaks */
  --whimsy: 1;         /* 0..1 illustration opacity, controlled by Tweaks */

  --ff-display: 'Libre Baskerville', Georgia, serif;
  --ff-sans: 'Hanken Grotesk', system-ui, sans-serif;

  /* doodle border radii (hand-drawn rounded rect) */
  --doodle: 255px 18px 225px 20px / 20px 225px 18px 255px;
  --doodle-2: 22px 240px 20px 230px / 235px 18px 240px 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--sand);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ---- Paper texture overlay ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--grain);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
/* warm vignette to feel sun-bleached */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(33,68,91,0.07) 100%);
}

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

::selection { background: var(--accent); color: var(--ink); }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }
.serif { font-family: var(--ff-display); }
.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before, .eyebrow.both::after {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.6;
}

a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  border: 2.5px solid var(--ink);
  border-radius: 40px;
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .14s ease, box-shadow .14s ease, background .2s ease;
  box-shadow: 3px 4px 0 rgba(var(--ink-rgb), 1);
  position: relative;
}
.btn:hover { transform: translate(-1px,-2px); box-shadow: 5px 7px 0 rgba(var(--ink-rgb),1); }
.btn:active { transform: translate(2px,3px); box-shadow: 1px 1px 0 rgba(var(--ink-rgb),1); }
.btn--ghost { background: transparent; box-shadow: 3px 4px 0 rgba(var(--ink-rgb),0.18); }
.btn--ghost:hover { background: rgba(var(--ink-rgb),0.05); }
.btn--coral { background: var(--coral); color: var(--sand); padding: 0.85em 2em; }
.btn--fjord { background: var(--fjord); color: var(--sand); }
.btn--cta { background: var(--accent); color: var(--ink); padding: 0.85em calc(2.6em + 10px); }
.btn--lg { font-size: 1.08rem; padding: 1em 1.9em; }

/* ===========================================================
   Inked cards
   =========================================================== */
.card {
  background: var(--sand);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 6px 7px 0 rgba(var(--ink-rgb), 1);
}

/* ===========================================================
   Hand-drawn divider (wavy horizon)
   =========================================================== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--teal);
  margin: 0 auto;
  max-width: 520px;
}
.divider svg { width: 100%; height: 26px; overflow: visible; }
.divider .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; }
/* anchor-centred divider */
.divider--anchor { gap: 16px; }
.divider--anchor .dwave { flex: 1; height: 22px; }
.divider--anchor .dmark { width: 40px; height: auto; flex: none; filter: drop-shadow(1.5px 2px 0 rgba(var(--ink-rgb),0.16)); }
.flourish {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--coral); font-size: 1.1rem;
}
.flourish::before, .flourish::after {
  content: "✶"; color: var(--accent); -webkit-text-stroke: 0.6px var(--ink);
}

/* Badge — clean inked seal pill */
.badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--coral);
  color: var(--sand);
  font-family: var(--ff-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  padding: 0.55em 1.1em;
  border: 2.5px solid var(--ink);
  border-radius: 40px;
  box-shadow: 2px 3px 0 rgba(var(--ink-rgb),1);
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sand); border: 1.5px solid var(--ink); flex: none;
}

/* ===========================================================
   Nav
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(245,242,234,0.82);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav__brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav__brand .anchor-mini { width: 26px; height: 26px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__links .btn--cta { padding: 0.85em calc(2.6em + 10px); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--coral); transition: width .2s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__burger { display: none; background: none; border: 2px solid var(--ink); border-radius: 10px; width: 44px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 20px; height: 2.4px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after { position: absolute; top: 6px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  padding: 46px 0 64px;
  overflow: hidden;
}
.hero__inner { display: grid; gap: 30px; justify-items: center; text-align: center; }
.hero__art-wrap { position: relative; width: 100%; max-width: 560px; margin: 0 auto; }
.hero__art {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 10px 12px 0 rgba(var(--ink-rgb),1);
  background: var(--sand);
}
.hero__meta { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 640px; }
.hero__date {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-weight: 700;
}
.hero__date .sep { color: var(--coral); margin: 0 0.35em; }
.hero__tagline { font-size: 1.12rem; color: rgba(var(--ink-rgb),0.82); max-width: 30em; margin: 0 auto; text-wrap: pretty; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* floating decorations */
.float {
  position: absolute;
  pointer-events: none;
  opacity: var(--whimsy);
  z-index: 5;
  transition: opacity .3s ease;
  filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.12));
}
.float--seagull { width: 120px; bottom: 8%; right: -10px; }
.float--anchor  { width: 86px;  top: 6%; left: -6px; transform: rotate(-12deg); }

/* sun rays behind hero (subtle) */
.hero__sun {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(var(--whimsy) * 0.5);
  background:
    repeating-conic-gradient(from 0deg at 50% 24%,
      rgba(235,199,107,0.0) 0deg 6deg,
      rgba(235,199,107,0.22) 6deg 12deg);
  -webkit-mask-image: radial-gradient(50% 42% at 50% 24%, #000 0%, transparent 70%);
          mask-image: radial-gradient(50% 42% at 50% 24%, #000 0%, transparent 70%);
}

/* ---- Hero variant B: banner ---- */
[data-hero="b"] .hero__art-wrap { max-width: 920px; }
[data-hero="b"] .hero__art {
  aspect-ratio: 21 / 11;
  object-fit: cover;
  object-position: 50% 38%;
}
/* ---- Hero variant C: split ---- */
@media (min-width: 880px) {
  [data-hero="c"] .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    text-align: left;
    gap: 48px;
  }
  [data-hero="c"] .hero__meta { align-items: flex-start; text-align: left; }
  [data-hero="c"] .hero__cta { justify-content: flex-start; }
  [data-hero="c"] .hero__date { text-align: left; }
  [data-hero="c"] .hero__tagline { margin: 0; }
}

/* ===========================================================
   Sections
   =========================================================== */
section { position: relative; }
.section { padding: 78px 0; }
.section--tight { padding: 56px 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin: 14px 0 0; }
.section-head p { margin: 16px auto 0; color: rgba(var(--ink-rgb),0.78); font-size: 1.08rem; text-wrap: pretty; }
.section--fjord { background: var(--fjord); color: var(--sand); }
.section--fjord .eyebrow { color: var(--accent); }
.section--fjord .section-head p { color: rgba(245,242,234,0.85); }
.section--sand2 { background: var(--sand-2); }

/* ===========================================================
   Real hand-drawn illustration spice
   =========================================================== */
/* centred illustration above a section title */
.head-illu { height: 96px; width: auto; margin: 0 auto 10px; display: block;
  filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.13)); }
.section--fjord .head-illu { filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.25)); }
/* illustration replacing the round tile in a card title */
.card-illu { height: 56px; width: auto; flex: none;
  filter: drop-shadow(1.5px 2px 0 rgba(var(--ink-rgb),0.14)); }
/* small inline illustration beside running text / eyebrows */
.spice { height: 1.5em; width: auto; vertical-align: -0.32em; margin: 0 0.15em;
  display: inline-block; }

/* ===========================================================
   Hand-drawn spot illustrations (real uploaded icons)
   =========================================================== */
.spot {
  width: 46px; height: 46px; flex: none;
  object-fit: contain; vertical-align: middle;
  filter: drop-shadow(1.5px 2px 0 rgba(var(--ink-rgb),0.14));
}
.spot-head {
  display: block; width: 88px; height: 88px; margin: 0 auto 4px;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.14));
  opacity: var(--whimsy); transition: opacity .3s ease;
}

.ic-tile {
  --tile: var(--accent);
  width: 54px; height: 54px; flex: none;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--tile);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 3px 4px 0 rgba(var(--ink-rgb),1);
}
.oy-ic { width: 30px; height: 30px; display: block; filter: url(#ink-wobble); }
.ic-tile .oy-ic { width: 32px; height: 32px; }

/* inline icons inside buttons & footer */
.btn-ic { display: inline-flex; margin-left: 2px; }
.btn-ic .oy-ic { width: 20px; height: 20px; }
.foot-ic { display: inline-block; width: 15px; margin-left: 7px; vertical-align: -2px; opacity: 0.8; }
.foot-ic .oy-ic { width: 15px; height: 15px; }

/* pakkeliste checkbox items */
.pack-item { position: relative; padding-left: 28px; break-inside: avoid; }
.pack-item::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 16px; height: 16px;
  border: 2px solid currentColor; border-radius: 4px; opacity: 0.65;
}

/* decorative illustrations dressed around the page */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: var(--whimsy);
  transition: opacity .3s ease;
  filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.12));
}
.decor--ic { filter: url(#ink-wobble); color: var(--ink); }
.decor--ic .oy-ic { width: 100%; height: 100%; }

/* horizon motif strip */
.motif {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 6vw, 64px);
  margin: 8px auto 0;
  max-width: 880px;
  color: var(--teal);
  min-height: 120px;
}

/* Drone image frame */
.drone-frame {
  margin: 48px auto 0;
  max-width: 580px;
  background: var(--sand);
  border: 2.5px solid var(--ink);
  border-radius: var(--doodle);
  box-shadow: 6px 7px 0 rgba(var(--ink-rgb), 1);
  padding: 16px;
}

.drone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.motif::before {
  content: ""; position: absolute; left: 4%; right: 4%; top: 62%;
  height: 0; border-top: 2.5px solid var(--teal);
  border-radius: 2px;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.motif__item { position: relative; color: var(--ink); }
.motif__item .oy-ic { filter: url(#ink-wobble); }
.motif__item.sm .oy-ic { width: 40px; height: 40px; }
.motif__item.md .oy-ic { width: 58px; height: 58px; }
.motif__item img { width: 104px; height: auto; filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.14)); }
.motif__item.sm img { width: 76px; }
.motif__item.md img { width: 90px; }
@media (max-width: 620px) {
  .motif { gap: 18px; flex-wrap: wrap; }
  .motif::before { display: none; }
  .motif__item img { width: 64px; }
  .motif__item.sm img { width: 54px; }
  .motif__item.md img { width: 60px; }
}

/* ===========================================================
   Øyutvalget band
   =========================================================== */
.utvalget {
  background: var(--coral);
  color: var(--sand);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.utvalget .container { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
@media (min-width: 820px) { .utvalget .container { grid-template-columns: 1.4fr 1fr; } }
.utvalget h2 { font-size: clamp(2rem,4.6vw,3rem); color: var(--sand); }
.utvalget p { font-size: 1.12rem; color: rgba(245,242,234,0.92); }
.utvalget .badge { background: var(--accent); color: var(--ink); }
.utvalget__mascot {
  position: absolute; top: -6px; right: 4%;
  width: 132px; height: auto; z-index: 1;
  opacity: var(--whimsy);
  transform: rotate(4deg);
  filter: drop-shadow(2px 4px 0 rgba(var(--ink-rgb),0.18));
  transition: opacity .3s ease;
}
@media (max-width: 900px) { .utvalget__mascot { width: 96px; top: -34px; right: 16px; } }
.utvalget__card {
  background: var(--sand); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 18px; padding: 26px;
  box-shadow: 7px 8px 0 rgba(var(--ink-rgb),1);
}
.utvalget__card ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 12px; }
.utvalget__card li { position: relative; padding-left: 32px; align-items: flex-start; font-size: 1rem; }
.utvalget__card li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 21px; height: 21px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D17A63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Cpath d='M12 7v13'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M5 14c0 4 3 6 7 6s7-2 7-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===========================================================
   Program timeline
   =========================================================== */
.timeline { display: grid; gap: 42px; }
@media (min-width: 820px) { .timeline { grid-template-columns: 1fr 1fr; } }
.day { }
.day__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; border-bottom: 2.5px dashed rgba(var(--ink-rgb),0.4); padding-bottom: 12px; }
.day__head .spot { width: 46px; height: 46px; flex: none; }
.day__head h3 { font-size: 1.9rem; }
.day__head .day__sub { font-family: var(--ff-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--coral); }
.slot { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1.5px solid rgba(var(--ink-rgb),0.12); }
.slot:last-child { border-bottom: none; }
.slot__time { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--fjord); }
.slot__what strong { display: block; font-size: 1.08rem; }
.slot__what span { font-size: 0.96rem; color: rgba(var(--ink-rgb),0.7); }
.section--fjord .slot { border-color: rgba(245,242,234,0.18); }
.section--fjord .slot__time { color: var(--accent); }
.section--fjord .slot__what span { color: rgba(245,242,234,0.72); }
.section--fjord .day__head { border-color: rgba(245,242,234,0.3); }

/* ===========================================================
   Billetter
   =========================================================== */
.tickets { display: grid; gap: 30px; grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; padding-top: 0; }
.tickets__row { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* inline icon in ticket header */
.ticket__sticker {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(1px 2px 4px rgba(var(--ink-rgb),0.18));
}

/* special pass colours */
.ticket--special-label { text-align: center; margin: 32px auto 8px; }
.ticket.ticket--warm { background: oklch(58% 0.13 46); color: var(--sand); }
.ticket--warm .ticket__header { border-bottom-color: rgba(245,242,234,0.2); }
.ticket--warm .ticket__name { color: var(--sand); }
.ticket--warm .ticket__sub { color: rgba(245,242,234,0.75); }
.ticket--warm .ticket__price { color: var(--accent); }
.ticket--warm ul li { color: rgba(245,242,234,0.92); }
.ticket--warm ul li::before { color: var(--accent); }

/* ===========================================================
   Days narrative (tre dager)
   =========================================================== */
.days { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .days { grid-template-columns: 1fr; }
}
.dayc {
  background: var(--sand);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 7px 0 rgba(var(--ink-rgb),1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dayc__header {
  background: rgba(var(--ink-rgb), 0.04);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 20px;
  align-items: start;
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.15);
}

.dayc__spot { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(2px 3px 0 rgba(var(--ink-rgb),0.14)); grid-row: 1 / 3; grid-column: 2; align-self: start; margin-left: 12px; }
.dayc__day { font-family: var(--ff-sans); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 800; font-size: 0.95rem; color: var(--coral); grid-column: 1; grid-row: 1; text-align: left; }
.dayc h3 { font-size: 1.7rem; line-height: 1.05; grid-column: 1; grid-row: 2; text-align: left; margin: 8px 0 0 0; }
.dayc p { margin: 0; font-size: 1rem; color: rgba(var(--ink-rgb),0.82); text-wrap: pretty; padding: 20px; }
.dayc__tag { margin-top: auto; padding-top: 8px; font-size: 0.86rem; font-weight: 700; color: var(--fjord); display: inline-flex; align-items: center; gap: 8px; }
.dayc--feature { background: var(--fjord); }
.dayc--feature .dayc h3, .dayc--feature h3 { color: var(--sand); }
.dayc--feature p { color: rgba(245,242,234,0.86); }
.dayc--feature .dayc__day { color: var(--accent); }
.dayc--feature .dayc__tag { color: var(--accent); }
.ticket {
  background: var(--sand);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 5px 16px rgba(var(--ink-rgb),0.18);
  display: flex; flex-direction: column;
  position: relative;
  overflow: visible;
}
.ticket__header {
  padding: 20px 22px 18px 22px;
  border-bottom: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 18px;
}
.ticket__body {
  padding: 20px 24px 28px;
  display: flex; flex-direction: column; gap: 13px; flex: 1;
}
.ticket__sub {
  font-family: var(--ff-sans); font-size: 1.05rem; font-weight: 500;
  color: rgba(var(--ink-rgb),0.72); margin: 0;
}
.ticket.ticket--feature { background: var(--fjord); color: var(--sand); }
.ticket--feature .ticket__header { border-bottom-color: rgba(245,242,234,0.2); }
.ticket--feature .ticket__sub { color: rgba(245,242,234,0.75); }
.ticket--feature ul li { color: rgba(245,242,234,0.9); }
.ticket--feature ul li::before { color: var(--accent); }
.ticket__name { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.05; }
.ticket ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; flex: 1; }
.ticket ul li { display: flex; gap: 10px; font-size: 0.97rem; align-items: flex-start; }
.ticket ul li::before { content: "✓"; color: var(--coral); font-weight: 800; flex: none; }

/* signup / Tally embed */
.signup { max-width: 620px; margin: 40px auto 0; text-align: center; }
.tally-wrap { margin-top: 24px; border-radius: 18px; overflow: hidden; }
.tally-wrap iframe { display: block; min-height: 460px; }
.signup__form { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.input {
  font-family: var(--ff-sans); font-size: 1rem;
  padding: 0.85em 1.1em; border: 2.5px solid var(--ink);
  border-radius: 40px; background: var(--sand); color: var(--ink);
  min-width: 240px; flex: 1;
}
.input::placeholder { color: rgba(var(--ink-rgb),0.45); font-style: italic; }
.input:focus { outline: none; box-shadow: 0 0 0 3px var(--accent); }

/* ===========================================================
   Praktisk
   =========================================================== */
.practical { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.practical .card h3 { font-size: 1.4rem; margin-bottom: 10px; display: flex; align-items: center; gap: 16px; }
.practical .card h3 .spot { width: 58px; height: 58px; }
.practical .card p { margin: 0; color: rgba(var(--ink-rgb),0.8); font-size: 1rem; }

/* ===========================================================
   Galleri
   =========================================================== */
.gallery { display: flex; align-items: flex-start; gap: 22px; }
.gallery__col { display: flex; flex-direction: column; gap: 22px; flex: 1; min-width: 0; }
.gallery .gslot {
  border: 2.5px solid var(--ink); border-radius: 16px; overflow: hidden;
  box-shadow: 5px 6px 0 rgba(var(--ink-rgb),1);
  background: var(--teal);
}
.gallery .gslot img { width: 100%; height: auto; display: block; }

/* ===========================================================
   Calendar Link
   =========================================================== */
.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.calendar-link:hover {
  background: rgba(235, 199, 107, 0.9);
  box-shadow: 0 2px 8px rgba(27, 42, 53, 0.15);
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--fjord-2);
  color: var(--sand);
  padding: 64px 0 36px;
  border-top: 3px solid var(--ink);
  position: relative;
}
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--ff-sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--accent); margin: 0 0 14px; }
.footer a { color: rgba(245,242,234,0.86); text-decoration: none; display: block; padding: 4px 0; }
.footer a:hover { color: var(--accent); }
.footer__brand { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(245,242,234,0.2); font-size: 0.86rem; color: rgba(245,242,234,0.6); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__seagull { width: 100px; position: absolute; right: 6%; top: -64px; opacity: var(--whimsy); }

/* ===========================================================
   Animations (gated on body[data-motion="on"])
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  body[data-motion="on"] .anim-bob { animation: bob 6s ease-in-out infinite; }
  body[data-motion="on"] .anim-drift { animation: drift 22s linear infinite; }
  body[data-motion="on"] .anim-sway { animation: sway 7s ease-in-out infinite; }
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-1.2deg); } }
@keyframes sway { 0%,100% { transform: rotate(-12deg) translateY(0); } 50% { transform: rotate(-9deg) translateY(-6px); } }
@keyframes drift {
  0%   { transform: translateX(-12vw) translateY(0); }
  50%  { transform: translateX(50vw) translateY(-18px); }
  100% { transform: translateX(112vw) translateY(0); }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===========================================================
   Responsive nav
   =========================================================== */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand); border-bottom: 2px solid var(--ink);
    padding: 8px 0; display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 14px 28px; border-top: 1px solid rgba(var(--ink-rgb),0.1); }
  .nav__links .btn { margin: 12px 28px; justify-content: center; }
  .nav__burger { display: flex; }
}

/* drifting bird layer */
.sky-bird { position: absolute; top: 90px; left: 0; width: 70px; z-index: 6; opacity: calc(var(--whimsy) * 0.9); pointer-events: none; }

/* ===========================================================
   Nav brand date
   =========================================================== */
.nav__branddate {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-left: 10px;
  opacity: 0.9;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 640px) { .nav__branddate { display: none; } }

/* ===========================================================
   Hero split — title + info hierarchy
   =========================================================== */
.hero__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 4px;
}
.hero__dateblock {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fjord);
  line-height: 1.3;
  border-left: 2.5px solid var(--fjord);
  padding-left: 12px;
  white-space: nowrap;
  opacity: 0.9;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}
.hero__info { display: flex; flex-direction: column; gap: 3px; }
.hero__date-line {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  font-weight: 700;
  color: var(--fjord);
  margin: 0;
}
.hero__loc-line {
  font-family: var(--ff-sans);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.52);
  margin: 0;
}

/* ===========================================================
   Program grid — 3 dager side by side
   =========================================================== */
.program-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}
.program-grid .day__head h3 { font-size: 1.35rem; }
.program-grid .day__head .spot { width: 36px; height: 36px; }
.program-grid .slot { grid-template-columns: 52px 1fr; gap: 8px; }
.program-grid .slot__time { font-size: 0.88rem; }
.program-grid .slot__what strong { font-size: 0.92rem; }
.program-grid .slot__what span { font-size: 0.84rem; }
@media (max-width: 860px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-grid .day__head h3 { font-size: 1.9rem; }
  .program-grid .day__head .spot { width: 46px; height: 46px; }
  .program-grid .slot { grid-template-columns: 84px 1fr; gap: 16px; }
  .program-grid .slot__time { font-size: 1.05rem; }
  .program-grid .slot__what strong { font-size: 1.08rem; }
  .program-grid .slot__what span { font-size: 0.96rem; }
}
.dayc--orange {
  background: oklch(78% 0.11 46);
}
.dayc--orange h3 { color: var(--ink); }
.dayc--orange p { color: rgba(var(--ink-rgb), 0.82); }
.dayc--orange .dayc__day { color: oklch(42% 0.12 46); }

/* ===========================================================
   Home Vipps mini-cards
   =========================================================== */
.home-vipps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 760px;
  margin: 0 auto;
}
.home-vcard {
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 4px 5px 0 rgba(var(--ink-rgb), 1);
  display: flex;
  flex-direction: column;
}
.home-vcard__head {
  padding: 18px 22px 14px;
  border-bottom: 2.5px solid var(--ink);
  background: var(--sand-2);
}
.home-vcard--dark .home-vcard__head { background: var(--fjord); }
.home-vcard__kasse {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}
.home-vcard--dark .home-vcard__kasse { color: var(--accent); }
.home-vcard__title {
  font-family: var(--ff-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.home-vcard--dark .home-vcard__title { color: var(--sand); }
.home-vcard__body {
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: var(--sand);
}
.home-vcard--dark .home-vcard__body { background: var(--fjord); }
.home-vcard__body p {
  font-size: 0.94rem;
  color: rgba(var(--ink-rgb), 0.8);
  margin: 0;
  text-wrap: pretty;
}
.home-vcard--dark .home-vcard__body p { color: rgba(245, 242, 234, 0.82); }
