/* ============================================================
   Damlandslaget i undervattensrugby — Sponsorsajt VM 2027
   Designspråk matchat mot SSDF:s sponsordeck.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	--polar-yellow: #f5d928;
	--polar-ink: #0b0f14;
	--ink-2: #131922;
	--paper: #f4f1e8;
	--fg-2: #b8c0cc;
	--fg-3: #6e7a8a;

	/* derived */
	--yellow-soft: #ffe74f;
	--hairline: rgba(244, 241, 232, 0.12);
	--hairline-2: rgba(244, 241, 232, 0.18);
	--hairline-soft: rgba(244, 241, 232, 0.07);
	--card-bg: rgba(255, 255, 255, 0.025);
	--card-bg-2: #161d27;
	--glass: rgba(11, 15, 20, 0.55);

	/* medals */
	--gold: var(--polar-yellow);
	--silver: #c8d0da;
	--bronze: #c98a4b;

	--radius: 18px;
	--radius-sm: 12px;
	--radius-lg: 24px;

	--ff-display: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
	--ff-body: "Space Grotesk", system-ui, -apple-system, sans-serif;
	--ff-mono: ui-monospace, "SF Mono", "Space Grotesk", monospace;

	--wrap: 1500px;
	--pad: clamp(20px, 5vw, 64px);

	--nav-h: 72px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 12px);
	-webkit-text-size-adjust: 100%;
}

body {
	background: var(--polar-ink);
	color: var(--paper);
	font-family: var(--ff-body);
	font-size: 17px;
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
}
button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

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

/* ---------- Typography utilities ---------- */
.display {
	font-family: var(--ff-display);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.03em;
}

.accent-italic {
	font-style: italic;
	color: var(--polar-yellow);
	display: inline-block;
}

.accent {
	color: var(--polar-yellow);
	font-style: normal;
}

.label {
	font-family: var(--ff-mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-3);
}
.label--accent {
	color: var(--polar-yellow);
}
.label--muted {
	color: var(--fg-3);
}

.lede {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	line-height: 1.55;
	color: var(--fg-2);
	max-width: 46ch;
}
.lede--right {
	justify-self: end;
}

.body {
	color: var(--fg-2);
}
.body--lg {
	font-size: 1.08rem;
	line-height: 1.65;
}
.fg-2 {
	color: var(--fg-2);
}

strong {
	font-weight: 600;
}

/* ---------- Layout ---------- */
.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--pad);
}

.section {
	padding-block: clamp(72px, 11vw, 140px);
	position: relative;
}
.section + .section {
	border-top: 1px solid var(--hairline-soft);
}

.section__index {
	margin-bottom: 18px;
}

.section__title {
	font-size: clamp(2.6rem, 6.4vw, 5.2rem);
	margin-bottom: 24px;
}

.grid {
	display: grid;
	gap: clamp(32px, 5vw, 72px);
}
.grid--split {
	grid-template-columns: 1fr 1fr;
	align-items: start;
}
.grid--reverse > *:first-child {
	order: 2;
}
.grid--head {
	grid-template-columns: 1.1fr 0.9fr;
	align-items: end;
	margin-bottom: clamp(40px, 6vw, 72px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--nav-h);
	background: transparent;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		backdrop-filter 0.35s ease;
	border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
	background: var(--glass);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom-color: var(--hairline);
}
.nav__inner {
	height: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--pad);
	display: flex;
	align-items: center;
	gap: 28px;
}
.nav__brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.nav__logo {
	height: 26px;
	width: auto;
}

.nav__links {
	display: flex;
	gap: 26px;
	margin-left: auto;
	font-family: var(--ff-mono);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}
.nav__links a {
	color: var(--fg-2);
	position: relative;
	padding-block: 4px;
	transition: color 0.2s ease;
}
.nav__links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1.5px;
	background: var(--polar-yellow);
	transition: width 0.25s ease;
}
.nav__links a:hover {
	color: var(--paper);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
	width: 100%;
}
.nav__links a.is-active {
	color: var(--paper);
}

.nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	margin-left: auto;
}
.nav__toggle span {
	width: 24px;
	height: 2px;
	background: var(--paper);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 95;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: calc(var(--nav-h) + 12px) var(--pad) 40px;
	background: var(--polar-ink);
	overflow-y: auto;
}
.nav__mobile a {
	padding: 16px 4px;
	font-family: var(--ff-mono);
	font-size: 1.15rem;
	letter-spacing: 0.03em;
	border-bottom: 1px solid var(--hairline-soft);
	color: var(--fg-2);
}
.nav.is-open .nav__mobile {
	display: flex;
}
/* keep brand + close button above the full-screen overlay */
.nav__brand,
.nav__toggle {
	position: relative;
	z-index: 96;
}
.nav.is-open {
	background: var(--polar-ink);
}

/* ============================================================
   BUTTONS / PILLS
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	padding: 14px 26px;
	border-radius: 999px;
	transition:
		transform 0.18s ease,
		box-shadow 0.25s ease,
		background 0.2s ease,
		color 0.2s ease;
	white-space: nowrap;
}
.btn--primary {
	background: var(--polar-yellow);
	color: var(--polar-ink);
	box-shadow: 0 6px 24px -8px rgba(245, 217, 40, 0.5);
}
.btn--primary:hover {
	box-shadow: 0 12px 32px -8px rgba(245, 217, 40, 0.6);
}

.btn--ghost {
	background: transparent;
	color: var(--paper);
	border: 1px solid var(--hairline-2);
}
.btn--ghost:hover {
	border-color: var(--paper);
	background: rgba(244, 241, 232, 0.04);
}

.pill {
	display: inline-flex;
	align-items: center;
	font-family: var(--ff-mono);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 9px 18px;
	border-radius: 999px;
}
.pill--outline {
	border: 1px solid var(--polar-yellow);
	color: var(--polar-yellow);
}

.card {
	background: var(--card-bg);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
}

/* ============================================================
   01 · HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: clamp(28px, 4vw, 56px);
	overflow: hidden;
}
.hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}
.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11, 15, 20, 0.55) 0%, rgba(11, 15, 20, 0.15) 28%, rgba(11, 15, 20, 0.35) 60%, rgba(11, 15, 20, 0.92) 100%),
		linear-gradient(90deg, rgba(11, 15, 20, 0.45) 0%, rgba(11, 15, 20, 0) 55%);
}

.hero__topbar {
	position: absolute;
	top: calc(var(--nav-h) + 18px);
	left: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
}

.hero__content {
	margin-bottom: clamp(40px, 6vw, 80px);
}
.hero__title {
	font-size: clamp(2.7rem, 8.2vw, 7rem);
	max-width: 16ch;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.hero__title .accent-italic {
	margin-top: 0.05em;
}

/* fact bar */
.factbar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--hairline-2);
	border-radius: var(--radius);
	background: rgba(11, 15, 20, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	overflow: hidden;
}
.factbar__item {
	padding: 22px clamp(18px, 2vw, 28px);
	border-left: 1px solid var(--hairline);
}
.factbar__item:first-child {
	border-left: none;
}
.factbar__item dt {
	margin-bottom: 10px;
}
.factbar__item dd {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	letter-spacing: -0.01em;
}

.metabar {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: clamp(32px, 4vw, 48px);
	border-top: 1px solid var(--hairline);
}
.metabar__item {
	display: grid;
	grid-template-columns: 130px 1fr;
	align-items: baseline;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--hairline);
}
.metabar__item dt {
	margin-bottom: 8px;
}
.metabar__item dd {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.1rem, 1.7vw, 1.4rem);
	letter-spacing: -0.01em;
}

/* ============================================================
   02 · SPORTEN
   ============================================================ */
.sport__hero {
	margin-bottom: clamp(36px, 4vw, 60px);
}
.sport__kicker {
	margin-bottom: 22px;
}

.factlist {
	display: flex;
	flex-direction: column;
}
.factlist__item {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid var(--hairline);
}
.factlist__num {
	font-family: var(--ff-mono);
	font-size: 0.78rem;
	color: var(--polar-yellow);
	letter-spacing: 0.1em;
	padding-top: 3px;
}
.factlist__head {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--paper);
}
.factlist__sub {
	font-size: 0.92rem;
	color: var(--fg-3);
}

.quote {
	margin-top: 34px;
	padding: 22px 26px;
	background: var(--ink-2);
	border-left: 3px solid var(--polar-yellow);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote p {
	font-family: var(--ff-display);
	font-style: italic;
	font-weight: 700;
	font-size: clamp(1.1rem, 1.8vw, 1.5rem);
	letter-spacing: -0.01em;
}

/* Court / spelplan */
.court {
	background: none;
	border: none;
	border-radius: 0;
	padding: 0;
}
.court--full {
	max-width: 1000px;
	margin: 0 auto;
}
.court--full .court__stage img {
	width: 100%;
	height: auto;
}
.court__head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.court__stage {
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.court__stage img {
	display: block;
	width: 100%;
	height: auto;
}
.court__subview--mobile {
	display: none;
}
.court__legend {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 18px;
	font-size: 0.92rem;
	color: var(--fg-2);
}
.legend-key {
	font-family: var(--ff-mono);
	color: var(--polar-yellow);
	font-weight: 700;
	margin-right: 4px;
	letter-spacing: 0.06em;
}

/* ============================================================
   03 · MERITER
   ============================================================ */
.merits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 3vw, 48px);
}
.merits__title {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding-bottom: 14px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--polar-yellow);
}
.merits__abbr {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 1.7rem;
	letter-spacing: -0.02em;
}
.medaltable {
	width: 100%;
	border-collapse: collapse;
}
.medaltable td {
	padding: 13px 6px;
	border-bottom: 1px solid var(--hairline-soft);
	font-size: 0.96rem;
	vertical-align: middle;
}
.medaltable__year {
	color: var(--fg-3);
	font-family: var(--ff-mono);
	font-size: 0.82rem;
	width: 52px;
	letter-spacing: 0.04em;
}
.medaltable__place {
	color: var(--fg-2);
}
.medaltable__res {
	text-align: right;
	font-weight: 600;
	color: var(--fg-3);
	white-space: nowrap;
	font-size: 0.92rem;
}
.medaltable__res.is-gold {
	color: var(--gold);
}
.medaltable__res.is-silver {
	color: var(--silver);
}
.medaltable__res.is-bronze {
	color: var(--bronze);
}

/* ============================================================
   04 · VILKA VI ÄR
   ============================================================ */
.stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 40px;
	margin: 40px 0;
}
.stat__num {
	display: block;
	font-family: var(--ff-display);
	font-weight: 800;
	font-style: italic;
	font-size: clamp(3rem, 6vw, 4.4rem);
	line-height: 1;
	color: var(--polar-yellow);
	letter-spacing: -0.02em;
}
.stat__cap {
	margin-top: 10px;
	color: var(--fg-2);
	font-size: 0.96rem;
	max-width: 24ch;
}

.laget__copy {
	max-width: 52ch;
}

.laget__media {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.map-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
	padding: clamp(8px, 1.5vw, 16px) 0 0;
	background: none;
	border: none;
	border-radius: 0;
}
.map-card__figure {
	position: relative;
	flex-shrink: 0;
	width: clamp(200px, 28vw, 340px);
	line-height: 0;
}
.map-card__map {
	width: 100%;
	height: auto;
	display: block;
}
.map-card__pin {
	--in-delay: calc(var(--d, 0) * 0.4s);
	position: absolute;
	width: clamp(5.4px, 0.66vw, 7.8px);
	aspect-ratio: 1;
	/* hidden until the card scrolls into view */
	opacity: 0;
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	background: var(--paper);
	box-shadow:
		0 0 0 1.5px var(--polar-ink),
		0 0 0 3.5px rgba(245, 217, 40, 0.55);
}
/* entrance: pins pop in one-by-one, north → south */
.map-card.is-inview .map-card__pin {
	animation: pin-in 0.5s cubic-bezier(0.2, 0.8, 0.3, 1.4) var(--in-delay) forwards;
}
@keyframes pin-in {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(0.8);
	}
}
/* continuous pulse — starts after each pin has entered, then uniform */
.map-card.is-inview .map-card__pin::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--paper);
	animation: pin-pulse 3.6s ease-out infinite;
	animation-delay: calc(var(--in-delay) + 0.5s);
}
@keyframes pin-pulse {
	0% {
		transform: scale(1);
		opacity: 0.55;
	}
	70% {
		transform: scale(3.2);
		opacity: 0;
	}
	100% {
		transform: scale(3.2);
		opacity: 0;
	}
}
@media (prefers-reduced-motion: reduce) {
	.map-card .map-card__pin {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(0.8);
		animation: none;
	}
	.map-card__pin::after {
		animation: none;
	}
}
.map-card__label {
	flex: 1 1 140px;
	min-width: 0;
	overflow-wrap: break-word;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.3rem, 2.4vw, 1.9rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* ============================================================
   PHOTOS
   ============================================================ */
.photo {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.photo--frame {
	border: 1px solid var(--hairline-2);
	box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}
.photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.photo--tall img {
	aspect-ratio: 3/3.4;
}
.photo:has(.photo__cap)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 38%;
	background: linear-gradient(to top, rgba(11, 15, 20, 0.92), rgba(11, 15, 20, 0));
	pointer-events: none;
}
.photo__cap {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 1;
	color: var(--paper);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
	letter-spacing: 0.16em;
}

/* ============================================================
   06 · EKONOMIN
   ============================================================ */
.budget {
	margin-bottom: clamp(36px, 5vw, 60px);
}
.budget__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 72px);
}
.budget__line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	padding: 22px 0;
	border-top: 1px solid var(--hairline);
}
.budget__head {
	font-size: 1.12rem;
	font-weight: 500;
}
.budget__sub {
	font-size: 0.86rem;
	color: var(--fg-3);
	margin-top: 4px;
}
.budget__amt {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.3rem, 2.2vw, 1.75rem);
	letter-spacing: -0.01em;
	white-space: nowrap;
}
.budget__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
	padding: 26px 0;
	border-top: 2px solid var(--polar-yellow);
	border-bottom: 1px solid var(--hairline);
}
.budget__total .label {
	letter-spacing: 0.2em;
	color: var(--paper);
}
.budget__total-amt {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	letter-spacing: -0.02em;
}

.ekonomi-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2vw, 26px);
}
.cost-card {
	padding: clamp(26px, 3vw, 38px);
	display: flex;
	flex-direction: column;
}
.cost-card__amt {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.cost-card__cap {
	color: var(--fg-2);
	font-size: 0.96rem;
	line-height: 1.55;
}
.cost-card--accent {
	border-color: rgba(245, 217, 40, 0.45);
	background: radial-gradient(120% 120% at 100% 0%, rgba(245, 217, 40, 0.12), transparent 60%), var(--card-bg);
	justify-content: center;
}
.cost-card__big {
	font-size: clamp(1.7rem, 3.4vw, 2.7rem);
	line-height: 1.02;
}

/* ============================================================
   07 · SPONSORPAKET (visual hub)
   ============================================================ */
.section--paket {
	background: radial-gradient(80% 60% at 50% 0%, rgba(245, 217, 40, 0.05), transparent 60%);
}
.packages {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2vw, 26px);
	align-items: start;
	margin-top: clamp(36px, 5vw, 56px);
	margin-bottom: clamp(28px, 4vw, 44px);
}
.pkg {
	position: relative;
	background: var(--card-bg);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 2.6vw, 38px);
	display: flex;
	flex-direction: column;
}
.pkg--featured {
	border-color: rgba(245, 217, 40, 0.55);
	background: radial-gradient(120% 80% at 50% 0%, rgba(245, 217, 40, 0.1), transparent 55%), var(--card-bg);
	box-shadow: 0 30px 70px -36px rgba(245, 217, 40, 0.35);
}

.pkg__badge {
	position: absolute;
	top: -14px;
	left: clamp(26px, 2.6vw, 38px);
	background: var(--polar-yellow);
	color: var(--polar-ink);
	font-family: var(--ff-mono);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 999px;
}

.pkg__head {
	margin-bottom: 8px;
}
.pkg__tier {
	margin-bottom: 14px;
}
.pkg__tier.is-gold {
	color: var(--gold);
}
.pkg__tier.is-silver {
	color: var(--silver);
}
.pkg__tier.is-bronze {
	color: var(--bronze);
}
.pkg__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.pkg__price-num {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(2.2rem, 3.6vw, 3.1rem);
	letter-spacing: -0.02em;
	color: var(--paper);
}
.pkg__price-cur {
	color: var(--paper);
	font-family: var(--ff-mono);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}

.pkg__list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex-grow: 1;
}
.pkg__list > li {
	position: relative;
	padding-left: 22px;
	color: var(--fg-2);
	font-size: 0.96rem;
	line-height: 1.5;
}
.pkg__list > li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--polar-yellow);
}
.pkg__list > .pkg__plus {
	list-style: none;
	padding-left: 0 !important;
	font-family: var(--ff-mono);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--paper);
	margin-top: 16px;
}
.pkg__plus::before {
	display: none;
}
.pkg__sublist {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pkg__sublist li {
	position: relative;
	padding-left: 16px;
	font-size: 0.9rem;
	color: var(--fg-3);
}
.pkg__sublist li::before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--fg-3);
}

.pkg-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	padding: clamp(26px, 3vw, 38px);
}
.pkg-footer__head {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.2rem, 2.2vw, 1.7rem);
	letter-spacing: -0.01em;
	margin-bottom: 8px;
}
.pkg-footer__sub {
	color: var(--fg-3);
	font-size: 0.96rem;
}
.pkg-footer__contact {
	text-align: right;
}
.pkg-footer__name {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 1.15rem;
	margin-top: 8px;
}
.pkg-footer__mail {
	margin-top: 4px;
}
.pkg-footer__mail a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--paper);
	transition: color 0.2s;
}
.pkg-footer__mail a::after {
	content: "↗";
	color: var(--polar-yellow);
	font-size: 0.85em;
	transition: transform 0.2s ease;
}
.pkg-footer__mail a:hover {
	color: var(--polar-yellow);
}
.pkg-footer__mail a:hover::after {
	transform: translate(2px, -2px);
}

/* ============================================================
   08 · RÄCKVIDD
   ============================================================ */
.reach {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 1.8vw, 24px);
}
.reach-card {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 2.4vw, 32px);
}
.reach-card__label.is-gold {
	color: var(--polar-yellow);
}
.reach-card__num {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 4.4vw, 3.8rem);
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 20px 0 16px;
}
.reach-card__cap {
	color: var(--fg-2);
	font-size: 0.9rem;
	line-height: 1.5;
	flex-grow: 1;
}
.reach-card__social {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}
.reach-card__social a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--hairline-2);
	color: var(--fg-2);
	transition:
		color 0.2s,
		border-color 0.2s,
		background 0.2s;
}
.reach-card__social a:hover {
	color: var(--polar-ink);
	background: var(--polar-yellow);
	border-color: var(--polar-yellow);
}
.reach-card__social svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}
.reach-card--accent {
	border-color: rgba(245, 217, 40, 0.5);
	background: radial-gradient(140% 120% at 100% 0%, rgba(245, 217, 40, 0.12), transparent 60%), var(--card-bg);
}

/* ============================================================
   09 · VARFÖR JUST NU
   ============================================================ */
.why {
	position: relative;
	padding-block: clamp(90px, 14vw, 180px);
	overflow: hidden;
	border-top: 1px solid var(--hairline-soft);
}
.why__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.why__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
}
.why__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 15, 20, 0.78) 0%, rgba(11, 15, 20, 0.55) 40%, rgba(11, 15, 20, 0.85) 100%);
}
.why__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}
.why__title {
	font-size: clamp(2.6rem, 7vw, 6rem);
	margin-bottom: clamp(48px, 7vw, 90px);
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.why__item {
	padding: 26px 28px 0 0;
	border-top: 1px solid var(--hairline-2);
	position: relative;
}
.why__item:not(:last-child) {
	border-right: 1px solid var(--hairline);
}
.why__item {
	padding-left: 24px;
}
.why__item:first-child {
	padding-left: 0;
}
.why__num {
	font-family: var(--ff-mono);
	font-size: 0.95rem;
	color: var(--fg-3);
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 16px;
}
.why__item p {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--paper);
}
.why__item em {
	font-style: italic;
}

/* ============================================================
   10 · KONTAKT
   ============================================================ */
.section--contact {
	background: radial-gradient(60% 60% at 0% 0%, rgba(20, 30, 45, 0.6), transparent 60%);
	background-image:
		linear-gradient(rgba(244, 241, 232, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.025) 1px, transparent 1px);
	background-size: 44px 44px;
}
.section--contact .wrap {
	align-items: center;
}

.contact__portrait {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--hairline-2);
	align-self: start;
}
.contact__portrait img {
	width: 100%;
	aspect-ratio: 1/1.08;
	object-fit: cover;
	object-position: center top;
}
.contact__portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(11, 15, 20, 0.85) 100%);
}
.contact__portrait-cap {
	position: absolute;
	left: 22px;
	bottom: 20px;
	z-index: 1;
}
.contact__portrait-name {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 6px;
}

.contact__person {
	margin: 24px 0;
}
.contact__name {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 8px;
}

.contact__details {
	border-top: 1px solid var(--hairline);
	margin-bottom: 22px;
}
.contact__detail {
	display: grid;
	grid-template-columns: 130px 1fr;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--hairline);
}
.contact__detail dd {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	letter-spacing: -0.01em;
}
.contact__detail-note {
	display: block;
	margin-top: 6px;
	font-family: var(--ff-body);
	font-weight: 400;
	font-size: 0.85rem;
	line-height: 1.45;
	letter-spacing: 0;
	color: var(--fg-3);
}
.contact__detail dd a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s;
}
.contact__detail dd a::after {
	content: "↗";
	color: var(--polar-yellow);
	font-size: 0.85em;
	transition: transform 0.2s ease;
}
.contact__detail dd a:hover {
	color: var(--polar-yellow);
}
.contact__detail dd a:hover::after {
	transform: translate(2px, -2px);
}

.contact__note {
	max-width: 52ch;
	margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
	border-top: 1px solid var(--hairline);
	padding-block: 32px;
}
.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.footer__logo {
	height: 22px;
	opacity: 0.85;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
	position: fixed;
	right: clamp(16px, 3vw, 32px);
	bottom: clamp(16px, 3vw, 32px);
	z-index: 90;
	background: var(--polar-yellow);
	color: var(--polar-ink);
	font-family: var(--ff-body);
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 999px;
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		background 0.2s ease,
		color 0.2s ease;
}
.float-cta.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.float-cta:hover {
	background: var(--paper);
	color: var(--polar-ink);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-inview {
	opacity: 1;
	transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
	.merits {
		grid-template-columns: 1fr;
		gap: clamp(36px, 7vw, 56px);
	}
	.reach {
		grid-template-columns: 1fr;
	}
	.why__grid {
		grid-template-columns: 1fr 1fr;
	}
	.why__item:nth-child(2n) {
		border-right: none;
	}
	.why__item {
		border-right: 1px solid var(--hairline);
	}
}

@media (max-width: 920px) {
	.nav__links {
		display: none;
	}
	.nav__toggle {
		display: flex;
	}

	.grid--split,
	.grid--head {
		grid-template-columns: 1fr;
	}
	/* let single-column grid children shrink below their content width */
	.grid--split > *,
	.grid--head > * {
		min-width: 0;
	}
	.grid--reverse > *:first-child {
		order: 0;
	}
	.lede--right {
		justify-self: start;
	}

	.packages {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
		gap:34px;
		margin-top:20px;
	}
	.pkg--featured {
		margin-bottom:40px;
	}
	.ekonomi-cards {
		grid-template-columns: 1fr;
	}
	.budget__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.pkg-footer {
		flex-direction: column;
		align-items: flex-start;
	}
	.pkg-footer__contact {
		text-align: left;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}
	.factbar {
		grid-template-columns: 1fr 1fr;
	}
	.factbar__item {
		min-width: 0;
		padding: 18px clamp(12px, 4vw, 18px);
	}
	.factbar__item:nth-child(2n + 1) {
		border-left: none;
	}
	.factbar__item:nth-child(n + 3) {
		border-top: 1px solid var(--hairline);
	}
	.stats {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.reach {
		grid-template-columns: 1fr;
	}
	.why__grid {
		grid-template-columns: 1fr;
	}
	.why__item {
		border-right: none !important;
		padding-left: 0;
	}
	.contact__detail {
		grid-template-columns: 100px 1fr;
	}
	.contact__detail dd {
		overflow-wrap: anywhere;
	}
	.pkg-footer__mail a {
		overflow-wrap: anywhere;
	}
	.float-cta {
		padding: 12px 20px;
		font-size: 0.92rem;
	}
	.why__pill {
		display: none;
	}

	/* court: flytta "Spelplanen · sektionsvy" till ovanför legenden */
	.court__head .court__subview {
		display: none;
	}
	.court__subview--mobile {
		display: block;
		margin-top: 18px;
	}
	.court__legend {
		margin-top: 8px;
	}

	/* map-card: map goes full-width on mobile, label centered below */
	.map-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: clamp(16px, 5vw, 28px);
	}
	.map-card__figure {
		width: 85%;
		margin: 0 auto;
	}
	.map-card__label {
		flex: 0 0 auto;
	}
	.section__title,
	.section__title .accent-italic {
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	/* Hero: stack image above, content below on solid bg (no overlay text) */
	.hero {
		min-height: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding-bottom: clamp(32px, 8vw, 48px);
	}
	.hero__media {
		position: relative;
		inset: auto;
		z-index: 0;
		height: 56vw;
		min-height: 280px;
	}
	.hero__scrim {
		display: none;
	}
	.hero__topbar {
		order: 1;
		position: static;
		justify-content: flex-start;
		padding-top: clamp(28px, 7vw, 40px);
	}
	.hero__topbar .pill--outline {
		border-color: var(--paper);
		color: var(--paper);
	}
	.hero__content {
		order: 2;
		margin-top: 20px;
		margin-bottom: 28px;
	}
	.hero__title {
		text-shadow: none;
		max-width: none;
		font-size: clamp(2.1rem, 9vw, 3.2rem);
		overflow-wrap: break-word;
		hyphens: auto;
	}
	.hero__facts {
		order: 3;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}
