/* Business Women Småland — enligt brand book (Pomelli, 2026)
   Pure White #FFFFFF · Onyx Black #3C3C3C · Pastel Cream #ECE2CE · Jet Black #000000
   Primärt typsnitt: PT Serif. Ton: professional, inspiring, empowering, supportive. */

:root {
  --ink: #000000;        /* Jet Black */
  --onyx: #3C3C3C;       /* Onyx Black */
  --ink-soft: #3C3C3C;
  --cream: #ECE2CE;      /* Pastel Cream */
  --paper: #ffffff;      /* Pure White */
  --paper-2: #f6f5f2;
  --stone: #e9e6df;
  --text: #4c4a48;
  --muted: #605e5a;
  --faint: #b5b3b0;
  --line: rgba(0, 0, 0, 0.10);
  --line-2: rgba(0, 0, 0, 0.18);
  --maxw: 1180px;
  --serif: "PT Serif", Georgia, serif;
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 1.18; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.overline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.link-underline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
/* BW-monogram enligt brand book: B, vertikalt SMÅLAND, nedsänkt W */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { display: flex; align-items: flex-start; font-family: var(--serif); color: var(--ink); }
.logo-mark .b1 { font-size: 34px; line-height: 1; font-weight: 700; }
.logo-mark .sm { writing-mode: vertical-rl; font-family: var(--sans); font-weight: 600; font-size: 7px; letter-spacing: 2.5px; color: var(--ink); margin: 4px 0 0 1px; }
.logo-mark .w1 { font-size: 34px; line-height: 1; font-weight: 700; transform: translateY(11px); }
.logo-name { display: none; font-family: var(--serif); font-size: 15px; color: var(--ink); }
@media (min-width: 560px) { .logo-name { display: block; } }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  font-weight: 600; font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--ink-soft);
}
.nav a:hover { color: var(--ink); }
.nav a.btn { padding: 9px 18px; color: #fff; }
.nav a.btn:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--ink); cursor: pointer; }
.has-sub { position: relative; display: flex; align-items: center; height: 78px; }
.has-sub > a::after { content: "\25BE"; font-size: 9px; margin-left: 5px; color: var(--muted); }
.sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  min-width: 230px; padding: 6px 0; display: none; z-index: 60;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { display: block; }
.sub a { display: block; padding: 11px 20px; white-space: nowrap; }
.sub a:hover { background: var(--paper-2); }

/* Hero — fullbredd med foto och overlay, som BWS */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  filter: brightness(.46) saturate(.88);
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; padding: 96px 28px; }
.hero .overline { color: rgba(255,255,255,.9); display: block; margin-bottom: 20px; }
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 48px);
}
.hero h1 em { font-style: italic; }
.hero__inner p { color: rgba(255,255,255,.95); font-size: 16px; max-width: 560px; margin: 20px auto 32px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Event-puls: i heron under CTA-knapparna, ursprungsfärgerna */
.pulse {
  background: transparent; color: #fff;
  border: 1px solid #fff;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 24px; margin-top: 26px;
}
.pulse .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream); flex-shrink: 0; animation: blink 2.4s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.pulse .label { font-size: 13px; font-weight: 400; }
.pulse .seats { font-weight: 600; font-size: 10.5px; letter-spacing: 1px; color: #fff; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 1px; margin-left: 6px; white-space: nowrap; }

/* Sid-hero (undersidor) */
.page-hero--img { position: relative; overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.4) saturate(.88); }
.page-hero--img .wrap { position: relative; z-index: 1; }
.page-hero { background: var(--ink); color: #fff; text-align: center; padding: 72px 0 64px; }
.page-hero .overline { color: rgba(255,255,255,.88); display: block; margin-bottom: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.page-hero p { color: rgba(255,255,255,.94); max-width: 560px; margin: 16px auto 0; font-size: 15.5px; }

/* Textsektioner på undersidor */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; font-size: 15.5px; }
.prose ul { margin: 0 0 14px 20px; font-size: 15.5px; }
.prose li { margin-bottom: 6px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* Bonus-USP */
.bonus-usp { display: flex; gap: 16px; align-items: center; background: var(--paper); border: 1px solid var(--ink); padding: 18px 22px; margin: 18px 0 4px; }
.bonus-usp svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--ink); }
.bonus-usp .bu-label { font-weight: 600; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.bonus-usp .bu-text { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.4; }
@media (max-width: 640px) { .bonus-usp { align-items: flex-start; } }

/* BWS Academy: faktaruta, accordion, datum & pris */
.facts { background: var(--cream); padding: 26px 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px 24px; margin: 26px 0; }
.facts b { font-family: var(--serif); font-weight: 400; font-size: 17px; display: block; color: var(--ink); line-height: 1.3; }
.facts span { font-weight: 600; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--onyx); display: block; margin-bottom: 4px; }
.acc { border: 1px solid var(--line); border-bottom: 0; background: var(--paper); }
.acc:last-of-type { border-bottom: 1px solid var(--line); }
.acc summary { cursor: pointer; padding: 18px 22px; font-family: var(--serif); font-size: 18px; color: var(--ink); list-style: none; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 20px; color: var(--muted); }
.acc[open] summary::after { content: "\2212"; }
.acc summary small { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--muted); margin-left: auto; padding-right: 8px; }
.acc__body { padding: 0 22px 22px; font-size: 14.5px; }
.acc__body ul { margin: 8px 0 12px 20px; }
.acc__body li { margin-bottom: 5px; }
.acc__body p { margin-bottom: 10px; }
.datelist { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
.datelist span, .datelist a { border: 1px solid var(--line-2); padding: 6px 12px; font-size: 12.5px; white-space: nowrap; }
.datelist a { transition: border-color .2s, background .2s; }
.datelist a:hover { border-color: var(--ink); background: var(--paper); }
@media (max-width: 640px) { .datelist span, .datelist a { white-space: normal; } }
.pricelist { margin: 14px 0; border-top: 1px solid var(--line); }
.pricelist div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 2px; border-bottom: 1px solid var(--line); font-size: 14px; }
.pricelist b { font-weight: 600; color: var(--ink); white-space: nowrap; }
.program-block { max-width: 860px; margin: 0 auto; }
.program-block + .program-block { margin-top: 64px; }
.program-block > .overline { display: block; margin-bottom: 8px; }
.program-block h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 4px; }
.program-block .tagline { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--onyx); margin-bottom: 14px; }
.program-block p { font-size: 15px; margin-bottom: 12px; }
.gallery3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery3 img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.9); }
@media (max-width: 640px) { .gallery3 { grid-template-columns: 1fr; } .gallery3 img { aspect-ratio: 3 / 2; height: auto; } .facts { padding: 20px; } }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--cream); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__head .overline { display: block; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section__head p { margin-top: 14px; font-size: 15.5px; }
.section__foot { text-align: center; margin-top: 44px; }

/* Erbjudande-kort (som BWS "Medlemskap & Program") */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .2s;
}
.card:hover { border-color: var(--line-2); }
.card__media { aspect-ratio: 3 / 2; background: var(--stone); position: relative; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: filter .5s ease, transform 4s ease; }
.card:hover .card__media img { filter: saturate(1); transform: scale(1.04); }
.card__media .ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--faint);
}
.card__media .ph svg { width: 26px; height: 26px; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 20px; margin-bottom: 8px; }
.card__body p { font-size: 13.5px; flex: 1; }
.card__body .link-underline { margin-top: 16px; align-self: flex-start; font-size: 11px; }

.cards--values { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cards--values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards--values { grid-template-columns: 1fr; } }

/* Nyheter */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news .card__body time { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }

/* Event-lista (som BWS "Kommande event & utbildningar") */
.events { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.event {
  display: flex; align-items: center; gap: 26px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.event:hover { background: var(--paper-2); }
.event__date { text-align: center; min-width: 64px; }
.event__date b { font-family: var(--serif); display: block; font-size: 26px; font-weight: 400; color: var(--ink); line-height: 1; }
.event__date span { font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.event__info { flex: 1; }
.event__info h3 { font-size: 17px; }
.event__info p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.event .link-underline { font-size: 11px; white-space: nowrap; }

/* LinkedIn-flöde (officiella inläggs-embeds) */
.li-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.li-feed iframe { width: 100%; height: 560px; border: 1px solid var(--line); display: block; }
.li-empty { background: var(--cream); padding: 44px 32px; text-align: center; grid-column: 1 / -1; }
.li-empty svg { width: 34px; height: 34px; color: var(--ink); margin: 0 auto 14px; }
.li-empty h3 { font-size: 21px; margin-bottom: 8px; }
.li-empty p { font-size: 14px; max-width: 420px; margin: 0 auto 20px; }
@media (max-width: 980px) { .li-feed { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .li-feed { grid-template-columns: 1fr; } .li-feed iframe { height: 520px; } }

/* Partner-marquee (alla sidor) */
.section--partners { background: var(--cream); padding: 64px 0; }
/* Partner-marquee (alla sidor) */
.marquee { background: var(--cream); overflow: hidden; padding: 30px 0; }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 28px; }
.marquee img { height: 96px; width: auto; display: block; }
.marquee a { flex-shrink: 0; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 14px)); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } .marquee__group[aria-hidden] { display: none; } }
@media (max-width: 640px) { .marquee img { height: 68px; } .marquee__track, .marquee__group { gap: 16px; } .marquee__track { animation-duration: 14s; } }

/* Partners */
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.partner {
  background: var(--paper);
  display: grid; place-items: center;
  padding: 34px 16px;
  font-weight: 600; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.partner:hover { color: var(--ink); }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 84px 0; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.cta-band p { color: var(--faint); margin: 14px 0 30px; font-size: 16px; }

/* Footer — tre kolumner som BWS */
.site-footer { background: var(--cream); padding: 64px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-grid a, .footer-grid p { color: var(--text); display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--ink); }
.footer-logo b { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.footer-logo span { font-weight: 600; font-size: 10px; letter-spacing: 4px; color: var(--muted); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 12.5px; }

/* LinkedIn-flöde (officiella inläggs-embeds) */
.li-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.li-feed iframe { width: 100%; height: 560px; border: 1px solid var(--line); display: block; }
.li-empty { background: var(--cream); padding: 44px 32px; text-align: center; grid-column: 1 / -1; }
.li-empty svg { width: 34px; height: 34px; color: var(--ink); margin: 0 auto 14px; }
.li-empty h3 { font-size: 21px; margin-bottom: 8px; }
.li-empty p { font-size: 14px; max-width: 420px; margin: 0 auto 20px; }
@media (max-width: 980px) { .li-feed { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .li-feed { grid-template-columns: 1fr; } .li-feed iframe { height: 520px; } }


/* Partners */
.partner-logo { background: var(--cream); display: grid; place-items: center; }
.card .partner-logo { aspect-ratio: 3 / 2; padding: 0; }
.card .partner-logo img { width: 100%; height: 100%; object-fit: contain; }
.partner-hero-logo { background: var(--cream); display: inline-grid; place-items: center; padding: 6px 10px; margin-bottom: 28px; }
.partner-hero-logo img { max-height: 150px; width: auto; }
.pquote { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.5; color: var(--ink); border-left: 2px solid var(--ink); padding-left: 24px; margin: 30px 0 8px; }
.pquote + .pquote-by { font-weight: 600; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding-left: 26px; }

/* CTA i sid-hero */
.page-hero .hero__cta { margin-top: 28px; }

/* Formulär (demo-läge tills Mailchimp kopplas in) */
.form-block { max-width: 680px; margin: 0 auto; }
.f-badge { display: inline-block; background: var(--cream); color: var(--ink-soft); font-weight: 600; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 16px; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-grid .full { grid-column: 1 / -1; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field > span { font-weight: 600; font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink-soft); }
.f-field input, .f-field select, .f-field textarea {
  font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line-2); background: var(--paper);
  border-radius: 0; width: 100%; -webkit-appearance: none; appearance: none;
}
.f-field select { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%233C3C3C'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.f-field textarea { min-height: 110px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--ink); }
.f-consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 4px; font-size: 13px; line-height: 1.6; cursor: pointer; }
.f-consent input { margin-top: 3px; accent-color: var(--ink); }
.f-consent a { border-bottom: 1px solid var(--ink); }
.f-actions { margin-top: 16px; }
.f-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.f-note a { border-bottom: 1px solid var(--muted); }
.f-error { font-size: 13px; color: #8b1a1a; margin-top: 10px; }
.f-success { background: var(--cream); padding: 24px 26px; font-size: 15px; }
.f-success b { font-family: var(--serif); font-weight: 400; font-size: 19px; display: block; margin-bottom: 6px; color: var(--ink); }
.newsletter-band { border-bottom: 1px solid var(--line); padding-bottom: 36px; margin-bottom: 44px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px 48px; align-items: center; }
.newsletter-band h4 { font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.newsletter-band p { font-size: 13.5px; }
.f-inline { display: flex; gap: 10px; }
.f-inline input { flex: 1; font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line-2); background: var(--paper); border-radius: 0; min-width: 0; }
.f-inline input:focus { outline: none; border-color: var(--ink); }
@media (max-width: 640px) {
  .f-grid { grid-template-columns: 1fr; }
  .newsletter-band { grid-template-columns: 1fr; }
  .f-inline { flex-direction: column; }
}

/* Tangentbordsfokus */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .cards, .news { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0; }
  .nav.open { align-items: stretch; }
  .nav.open a { display: block; padding: 14px 28px; text-align: center; }
  .nav.open .btn { display: flex; margin: 10px 28px; }
  .nav.open .has-sub { flex-direction: column; align-items: stretch; height: auto; }
  .nav.open .has-sub > a { width: 100%; justify-content: center; }
  .nav.open .sub { position: static; transform: none; display: block; border: 0; box-shadow: none; min-width: 0; padding: 0 0 4px; }
  .nav.open .sub a { padding: 10px 28px; color: var(--muted); text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .cards, .news { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { min-height: 480px; }
  .hero__inner { padding: 72px 22px; }
  .wrap { padding: 0 22px; }
  .hero__cta .btn { width: 100%; }
  .cta-band .btn { width: 100%; }
  .pulse { flex-wrap: wrap; row-gap: 6px; padding: 12px 18px; justify-content: center; margin-top: 20px; }
  .pulse .label { flex-basis: 100%; }
  .pulse .seats { margin-left: 19px; }
  .event { gap: 16px; flex-wrap: wrap; }
  .event .link-underline { margin-left: 80px; }
}

[hidden] { display: none !important; }

.personer { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-auto-rows: 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.person { background: var(--paper); border: 1px solid var(--line); padding: 30px 22px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.person .li-knapp { margin-top: auto; }
.person__roll { margin-bottom: 14px; }
.person__avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--cream); color: var(--ink); font-family: var(--serif); font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.person h3 { font-size: 18px; margin-bottom: 4px; }
.person__roll { font-weight: 600; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

.event__acc { flex-basis: 100%; margin: 14px 0 0 80px; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .event__acc { margin-left: 0; } }

.event-nav { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 28px; }
.event-nav a { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); max-width: 48%; }
.event-nav a:hover b, .event-nav a:focus-visible b { text-decoration: underline; }
.event-nav .en-pil { font-family: var(--serif); font-size: 22px; flex-shrink: 0; }
.event-nav .en-label { display: block; font-weight: 600; font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.event-nav b { font-family: var(--serif); font-weight: 400; font-size: 17px; display: block; line-height: 1.3; }
.event-nav small { color: var(--muted); font-size: 13px; }
.event-nav__next { margin-left: auto; text-align: right; flex-direction: row-reverse; }
@media (max-width: 640px) { .event-nav { flex-direction: column; } .event-nav a { max-width: 100%; } .event-nav__next { margin-left: 0; text-align: right; } }

.li-knapp { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-weight: 600; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.li-knapp:hover, .li-knapp:focus-visible { color: var(--muted); border-color: var(--muted); }
.li-knapp svg { width: 14px; height: 14px; flex-shrink: 0; }

.person__avatar { overflow: hidden; }
.person__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.formaner { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); grid-auto-rows: 1fr; gap: 24px; }
.forman { background: var(--paper); border: 1px solid var(--line); padding: 26px 24px; display: flex; flex-direction: column; }
.forman .overline { display: block; margin-bottom: 10px; }
.forman p { font-size: 14.5px; margin-bottom: 14px; }
.forman a { margin-top: auto; }

.erbjudande { display: flex; gap: 24px; align-items: center; background: var(--paper); border: 1px solid var(--ink); padding: 24px 26px; max-width: 860px; margin: 0 auto; }
.erbjudande__bild { width: 128px; flex-shrink: 0; }
.erbjudande__bild img { width: 100%; height: auto; display: block; }
.erbjudande h3 { font-size: 20px; margin: 4px 0 6px; }
.erbjudande p { font-size: 14px; margin-bottom: 12px; }
.erbjudande .knappar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.erbjudande .btn { padding: 10px 16px; font-size: 10.5px; }
@media (max-width: 640px) { .erbjudande { flex-direction: column; text-align: center; } .erbjudande .knappar { justify-content: center; } }

.event--past { opacity: .6; }
.event--past .event__date b { font-style: italic; }
