/* ==========================================================================
   Terrasol — designsystem
   Palett: off-white, sandbeige, djup havsblå
   ========================================================================== */

:root {
	/* Ytor */
	--c-bg: #fbf9f6;
	--c-surface: #ffffff;
	--c-surface-alt: #f6f1e9;

	/* Sand */
	--c-sand-50: #f8f3ec;
	--c-sand-100: #efe4d4;
	--c-sand-200: #e3d2ba;
	--c-sand-300: #d4bd9d;
	--c-sand-400: #c3a67f;

	/* Havsblå */
	--c-sea-900: #08202f;
	--c-sea-800: #0d2c40;
	--c-sea-700: #123b54;
	--c-sea-600: #1a5175;
	--c-sea-500: #256a95;
	--c-sea-100: #dbe7ef;

	/* Accent */
	--c-accent: #c07a34;
	--c-accent-soft: #f4e5d2;

	/* Text */
	--c-ink: #101f2b;
	--c-body: #33454f;
	--c-muted: #6a7b85;
	--c-line: #e4dcd1;

	/* Status */
	--c-ok: #1d7a4f;
	--c-ok-soft: #e3f3ea;
	--c-warn: #9a6600;
	--c-err: #b3261e;

	/* Typografi */
	--f-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--f-display: "Fraunces", Georgia, "Times New Roman", serif;

	/* Skala (fluid) */
	--t-xs: 0.78rem;
	--t-sm: 0.875rem;
	--t-base: 1rem;
	--t-md: clamp(1.05rem, 0.99rem + 0.28vw, 1.2rem);
	--t-lg: clamp(1.25rem, 1.13rem + 0.55vw, 1.55rem);
	--t-xl: clamp(1.55rem, 1.32rem + 1.05vw, 2.2rem);
	--t-2xl: clamp(1.95rem, 1.55rem + 1.85vw, 3.05rem);
	--t-3xl: clamp(2.35rem, 1.7rem + 2.9vw, 4.1rem);

	/* Rytm */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 3rem;
	--sp-8: 4rem;
	--sp-9: 6rem;

	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(8, 32, 47, 0.06), 0 1px 3px rgba(8, 32, 47, 0.04);
	--shadow-md: 0 4px 12px rgba(8, 32, 47, 0.07), 0 2px 4px rgba(8, 32, 47, 0.04);
	--shadow-lg: 0 18px 40px rgba(8, 32, 47, 0.12), 0 4px 12px rgba(8, 32, 47, 0.06);

	--wrap: 1200px;
	--wrap-narrow: 780px;
	--header-h: 68px;
}

/* --------------------------------------------------------------------------
   Typsnitt (self-hosted, inga externa anrop)
   -------------------------------------------------------------------------- */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter-var.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Fraunces";
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url("../fonts/fraunces-var.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
	margin: 0;
	font-family: var(--f-sans);
	font-size: var(--t-base);
	line-height: 1.65;
	color: var(--c-body);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-wrap: break-word;
}

img,
picture,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

h1, h2, h3, h4, h5 {
	font-family: var(--f-display);
	color: var(--c-ink);
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 var(--sp-4);
	font-weight: 600;
	text-wrap: balance;
}

h1 { font-size: var(--t-3xl); }
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-xl); }
h4 { font-size: var(--t-lg); }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a {
	color: var(--c-sea-600);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover { color: var(--c-sea-700); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
	outline: 3px solid var(--c-sea-500);
	outline-offset: 2px;
	border-radius: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--c-sea-700);
	color: #fff;
	padding: var(--sp-3) var(--sp-5);
	border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

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

@media (min-width: 768px) {
	.wrap { padding-inline: var(--sp-6); }
}

.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sp-7); }
@media (min-width: 768px) { .section { padding-block: var(--sp-9); } }

.section--tight { padding-block: var(--sp-6); }
.section--sand { background: var(--c-surface-alt); }
.section--sea { background: var(--c-sea-800); color: #d9e5ec; }
.section--sea h2, .section--sea h3 { color: #fff; }

.section__head {
	max-width: 44rem;
	margin: 0 auto var(--sp-6);
	text-align: center;
}
.section__head p { color: var(--c-muted); font-size: var(--t-md); }

.eyebrow {
	display: inline-block;
	font-family: var(--f-sans);
	font-size: var(--t-xs);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: var(--sp-2);
}
.section--sea .eyebrow { color: var(--c-sand-300); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
	.grid--2 { grid-template-columns: repeat(2, 1fr); }
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   Knappar
   -------------------------------------------------------------------------- */
.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	font-family: var(--f-sans);
	font-size: var(--t-base);
	font-weight: 600;
	line-height: 1.2;
	padding: 0.85rem 1.6rem;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	background: var(--c-sea-700);
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
	text-align: center;
}

.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--c-sea-800);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn:active { transform: translateY(0); }

.btn--accent,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
	background: var(--c-accent);
	color: #fff;
}
.btn--accent:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
	background: #a8642a;
	color: #fff;
}

.btn--ghost {
	background: transparent;
	color: var(--c-sea-700);
	border-color: var(--c-sea-700);
}
.btn--ghost:hover {
	background: var(--c-sea-700);
	color: #fff;
}

.btn--light {
	background: #fff;
	color: var(--c-sea-800);
}
.btn--light:hover { background: var(--c-sand-50); color: var(--c-sea-900); }

.btn--lg { padding: 1.05rem 2.2rem; font-size: var(--t-md); min-height: 56px; }
.btn--block { display: flex; width: 100%; }

.btn__note {
	display: block;
	font-size: var(--t-sm);
	color: var(--c-muted);
	margin-top: var(--sp-2);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
	background: var(--c-sea-800);
	color: #cddbe4;
	font-size: var(--t-xs);
	letter-spacing: 0.01em;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-5);
	min-height: 34px;
	flex-wrap: wrap;
	text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }
.topbar__item svg { width: 14px; height: 14px; flex: none; color: var(--c-sand-300); }
.topbar__item:nth-child(n + 3) { display: none; }
@media (min-width: 768px) { .topbar__item:nth-child(n + 3) { display: inline-flex; } }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(251, 249, 246, 0.92);
	backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--c-line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	color: var(--c-sea-800);
	flex: none;
	margin-right: auto;
}
.brand:hover { color: var(--c-sea-900); }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__name {
	font-family: var(--f-display);
	font-size: 1.32rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.brand img { max-height: 44px; width: auto; }

.nav { display: none; }
@media (min-width: 1024px) {
	.nav { display: block; }
	.nav ul {
		display: flex;
		align-items: center;
		gap: var(--sp-5);
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.nav a {
		display: block;
		padding: 0.5rem 0;
		font-size: var(--t-sm);
		font-weight: 500;
		color: var(--c-ink);
		text-decoration: none;
		border-bottom: 2px solid transparent;
	}
	.nav a:hover,
	.nav .current-menu-item > a {
		color: var(--c-sea-700);
		border-bottom-color: var(--c-accent);
	}
}

.header__actions { display: flex; align-items: center; gap: var(--sp-2); flex: none; }

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--c-ink);
	border-radius: var(--r-md);
	cursor: pointer;
	position: relative;
	text-decoration: none;
}
.icon-btn:hover { background: var(--c-sand-100); color: var(--c-sea-800); }
.icon-btn svg { width: 22px; height: 22px; }

.cart-count {
	position: absolute;
	top: 4px;
	right: 3px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: var(--r-pill);
	background: var(--c-accent);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}
.cart-count[hidden] { display: none; }

.header__cta { display: none; }
@media (min-width: 1024px) {
	.header__cta { display: inline-flex; padding: 0.7rem 1.35rem; min-height: 44px; font-size: var(--t-sm); }
}

.nav-toggle { display: inline-flex; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobilmeny */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 150;
	display: grid;
	grid-template-columns: 1fr;
	pointer-events: none;
	visibility: hidden;
}
.mobile-nav[data-open="true"] { pointer-events: auto; visibility: visible; }

.mobile-nav__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 32, 47, 0.5);
	opacity: 0;
	transition: opacity 0.25s ease;
	border: 0;
	cursor: pointer;
}
.mobile-nav[data-open="true"] .mobile-nav__scrim { opacity: 1; }

.mobile-nav__panel {
	position: relative;
	margin-left: auto;
	width: min(360px, 88vw);
	height: 100%;
	background: var(--c-bg);
	padding: var(--sp-4) var(--sp-5) var(--sp-7);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}
.mobile-nav[data-open="true"] .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; }

.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li + li { border-top: 1px solid var(--c-line); }
.mobile-nav a {
	display: block;
	padding: 0.9rem 0;
	font-size: var(--t-md);
	font-weight: 500;
	color: var(--c-ink);
	text-decoration: none;
}
.mobile-nav a:hover { color: var(--c-sea-700); }

.mobile-nav__foot { margin-top: auto; display: grid; gap: var(--sp-3); }
.mobile-nav__contact { font-size: var(--t-sm); color: var(--c-muted); }
.mobile-nav__contact a { display: inline; padding: 0; font-size: inherit; }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background: var(--c-sea-800);
	color: #fff;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
}
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 32, 47, 0.78) 0%, rgba(8, 32, 47, 0.62) 45%, rgba(8, 32, 47, 0.8) 100%);
}
@media (min-width: 900px) {
	.hero__media::after {
		background: linear-gradient(96deg, rgba(8, 32, 47, 0.92) 0%, rgba(8, 32, 47, 0.74) 42%, rgba(8, 32, 47, 0.25) 100%);
	}
}

.hero__inner {
	position: relative;
	z-index: 1;
	padding-block: var(--sp-8);
	max-width: 40rem;
}
@media (min-width: 900px) { .hero__inner { padding-block: var(--sp-9); } }

.hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.hero__lead {
	font-size: var(--t-md);
	color: #d5e3ec;
	margin-bottom: var(--sp-5);
	max-width: 34rem;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	padding: 0.35rem 0.85rem;
	border-radius: var(--r-pill);
	font-size: var(--t-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: var(--sp-4);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }

.hero__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--sp-2);
	font-size: var(--t-sm);
	color: #cddbe4;
}
.hero__points li { display: flex; align-items: flex-start; gap: 0.55rem; }
.hero__points svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--c-sand-300); }

/* --------------------------------------------------------------------------
   USP-rad
   -------------------------------------------------------------------------- */
.usp-bar { background: var(--c-surface); border-bottom: 1px solid var(--c-line); }
.usp-bar__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-4);
	padding-block: var(--sp-5);
}
@media (min-width: 900px) { .usp-bar__grid { grid-template-columns: repeat(4, 1fr); } }

.usp {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
}
.usp__icon {
	flex: none;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: var(--r-md);
	background: var(--c-sand-50);
	color: var(--c-sea-700);
}
.usp__icon svg { width: 21px; height: 21px; }
.usp__title { font-weight: 600; color: var(--c-ink); font-size: var(--t-sm); line-height: 1.35; }
.usp__text { font-size: var(--t-xs); color: var(--c-muted); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Kort
   -------------------------------------------------------------------------- */
.card {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--c-sand-200); }

.card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--c-sand-50);
	overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__badge {
	position: absolute;
	top: var(--sp-3);
	left: var(--sp-3);
	background: var(--c-sea-800);
	color: #fff;
	font-size: var(--t-xs);
	font-weight: 600;
	padding: 0.28rem 0.7rem;
	border-radius: var(--r-pill);
	letter-spacing: 0.02em;
}
.card__badge--accent { background: var(--c-accent); }

.card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.card__title { font-size: var(--t-lg); margin: 0; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--c-sea-700); }
.card__text { font-size: var(--t-sm); color: var(--c-muted); margin: 0; flex: 1; }

.card__specs { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; font-size: var(--t-sm); }
.card__specs li { display: flex; align-items: center; gap: 0.5rem; color: var(--c-body); }
.card__specs svg { width: 16px; height: 16px; flex: none; color: var(--c-sea-500); }

.card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	margin-top: auto;
	padding-top: var(--sp-2);
	flex-wrap: wrap;
}
.card__price { font-size: var(--t-sm); color: var(--c-muted); }
.card__price strong { display: block; font-size: var(--t-lg); color: var(--c-ink); font-family: var(--f-display); }

/* --------------------------------------------------------------------------
   Steg / process
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: var(--sp-5); }
.step::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: var(--r-pill);
	background: var(--c-sea-700);
	color: #fff;
	font-weight: 700;
	font-size: var(--t-sm);
}
.step { padding-left: 3.25rem; padding-top: 0; min-height: 38px; }
.step__title { font-weight: 600; color: var(--c-ink); margin-bottom: 0.2rem; }
.step__text { font-size: var(--t-sm); color: var(--c-muted); }

/* --------------------------------------------------------------------------
   Trust / recensioner
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 1px; color: var(--c-accent); }
.stars svg { width: 16px; height: 16px; }

.review {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: var(--sp-5);
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
}
.review__text { font-size: var(--t-sm); color: var(--c-body); margin: 0; flex: 1; }
.review__meta { font-size: var(--t-xs); color: var(--c-muted); }
.review__meta strong { display: block; color: var(--c-ink); font-size: var(--t-sm); }

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--sp-4) var(--sp-6);
	padding-block: var(--sp-5);
	font-size: var(--t-sm);
	color: var(--c-muted);
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-strip__item svg { width: 20px; height: 20px; color: var(--c-sea-600); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--sp-3); max-width: 48rem; margin-inline: auto; }

.faq__item {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	overflow: hidden;
}
.faq__item[open] { border-color: var(--c-sand-300); }

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	padding: var(--sp-4) var(--sp-5);
	font-weight: 600;
	color: var(--c-ink);
	cursor: pointer;
	list-style: none;
	font-size: var(--t-base);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "";
	flex: none;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--c-sea-600);
	border-bottom: 2px solid var(--c-sea-600);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translate(-2px, -2px); }

.faq__a { padding: 0 var(--sp-5) var(--sp-5); font-size: var(--t-sm); color: var(--c-body); }

/* --------------------------------------------------------------------------
   CTA-band
   -------------------------------------------------------------------------- */
.cta-band {
	background: linear-gradient(120deg, var(--c-sea-800), var(--c-sea-600));
	color: #fff;
	border-radius: var(--r-xl);
	padding: var(--sp-6) var(--sp-5);
	text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: var(--sp-8); } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfdfe9; max-width: 38rem; margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-5); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--c-sea-900);
	color: #a9bcc8;
	font-size: var(--t-sm);
	padding-top: var(--sp-7);
	margin-top: var(--sp-8);
}
.site-footer a { color: #cddbe4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__grid {
	display: grid;
	gap: var(--sp-6);
	grid-template-columns: 1fr;
	padding-bottom: var(--sp-6);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__brand { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; margin-bottom: var(--sp-3); }
.footer__brand .brand__name { color: #fff; }
.footer__about { max-width: 26rem; }

.footer__title {
	font-family: var(--f-sans);
	font-size: var(--t-xs);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: var(--sp-3);
}

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: var(--sp-4);
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3) var(--sp-5);
	align-items: center;
	justify-content: space-between;
	font-size: var(--t-xs);
}

/* Copyright och villkorslänkar ligger på samma rad och radbryts ihop. */
.footer__copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem var(--sp-3);
}

.footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem var(--sp-3);
}

/* Punkt mellan länkarna, men inte före den första. */
.footer__legal li + li::before {
	content: "·";
	margin-right: var(--sp-3);
	opacity: 0.5;
}

.payment-marks { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }
.payment-marks span {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--r-sm);
	padding: 0.25rem 0.6rem;
	font-size: var(--t-xs);
	color: #cddbe4;
	background: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Innehållssidor
   -------------------------------------------------------------------------- */
.page-hero {
	background: var(--c-surface-alt);
	border-bottom: 1px solid var(--c-line);
	padding-block: var(--sp-6);
}
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero p { color: var(--c-muted); max-width: 42rem; font-size: var(--t-md); }

.breadcrumbs {
	font-size: var(--t-xs);
	color: var(--c-muted);
	margin-bottom: var(--sp-3);
}
.breadcrumbs a { color: var(--c-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-sea-700); text-decoration: underline; }
.breadcrumbs__sep { margin-inline: 0.4rem; opacity: 0.6; }

.prose { max-width: 44rem; }
.prose h2 { font-size: var(--t-xl); margin-top: var(--sp-6); }
.prose h3 { font-size: var(--t-lg); margin-top: var(--sp-5); }
.prose > :first-child { margin-top: 0; }
.prose img { border-radius: var(--r-md); }
.prose blockquote {
	margin: var(--sp-5) 0;
	padding: var(--sp-4) var(--sp-5);
	border-left: 3px solid var(--c-sand-300);
	background: var(--c-surface-alt);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-style: italic;
}

.table-wrap { overflow-x: auto; margin-bottom: var(--sp-5); }
table.data {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--t-sm);
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	overflow: hidden;
}
table.data th, table.data td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--c-line); }
table.data th { background: var(--c-surface-alt); font-weight: 600; color: var(--c-ink); white-space: nowrap; }
table.data tr:last-child td { border-bottom: 0; }

/* Kontaktformulär */
.form-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: 0.35rem; }
.field > label { font-size: var(--t-sm); font-weight: 600; color: var(--c-ink); }
.field .req { color: var(--c-err); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
	width: 100%;
	padding: 0.7rem 0.9rem;
	min-height: 48px;
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	background: var(--c-surface);
	color: var(--c-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus,
.woocommerce form .form-row input.input-text:focus {
	border-color: var(--c-sea-500);
	box-shadow: 0 0 0 3px rgba(37, 106, 149, 0.16);
	outline: none;
}

.notice {
	padding: var(--sp-4) var(--sp-5);
	border-radius: var(--r-md);
	margin-bottom: var(--sp-5);
	font-size: var(--t-sm);
	border: 1px solid;
}
.notice--ok { background: var(--c-ok-soft); border-color: #b6ddc7; color: #145c3b; }
.notice--err { background: #fdeceb; border-color: #f3c7c4; color: #8d1e18; }

/* --------------------------------------------------------------------------
   Paginering & 404
   -------------------------------------------------------------------------- */
.pagination { display: flex; gap: var(--sp-2); justify-content: center; margin-top: var(--sp-6); flex-wrap: wrap; }
.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.6rem;
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	background: var(--c-surface);
	color: var(--c-ink);
	text-decoration: none;
	font-size: var(--t-sm);
}
.pagination .page-numbers:hover { border-color: var(--c-sea-500); color: var(--c-sea-700); }
.pagination .page-numbers.current { background: var(--c-sea-700); border-color: var(--c-sea-700); color: #fff; }

.error-404 { text-align: center; padding-block: var(--sp-9); }
.error-404__code { font-family: var(--f-display); font-size: clamp(4rem, 12vw, 8rem); color: var(--c-sand-300); line-height: 1; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.stack { display: grid; gap: var(--sp-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: revert; } }
