/* SOVIG AS — minimalistic, low-tech, sharp edges */

:root {
	--bg: #f4f2ed;
	--bg-alt: #ffffff;
	--ink: #111111;
	--ink-soft: #3a3a3a;
	--muted: #6b6b6b;
	--line: #111111;
	--accent: #b23a1e;
	--maxw: 1180px;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--accent);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
	border-bottom: 1px solid var(--line);
	background: var(--bg);
	position: sticky;
	top: 0;
	z-index: 10;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
}

.brand-logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.brand-name {
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 14px;
}

.nav {
	display: flex;
	gap: 28px;
}

.nav a {
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid transparent;
	padding-bottom: 4px;
}

.nav a:hover {
	border-bottom-color: var(--ink);
}

/* ---------- Hero ---------- */

.hero {
	border-bottom: 1px solid var(--line);
	padding: 64px 0 72px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.eyebrow {
	margin: 0 0 16px;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero h1 {
	margin: 0 0 20px;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.lede {
	margin: 0 0 32px;
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 48ch;
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 1px solid var(--line);
	margin-bottom: 32px;
}

.meta-item {
	padding: 16px 18px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.meta-item:nth-child(2n) {
	border-right: none;
}

.meta-item:nth-last-child(-n+2) {
	border-bottom: none;
}

.meta-label {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}

.meta-value {
	font-size: 18px;
	font-weight: 700;
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid var(--line);
	border-radius: 0;
	font-weight: 600;
	transition: background 120ms linear, color 120ms linear;
}

.btn-primary {
	background: var(--ink);
	color: var(--bg);
}

.btn-primary:hover {
	background: var(--accent);
	color: #ffffff;
	border-color: var(--accent);
}

.btn-ghost {
	background: transparent;
	color: var(--ink);
}

.btn-ghost:hover {
	background: var(--ink);
	color: var(--bg);
}

.hero-media {
	position: relative;
	display: block;
	border: 1px solid var(--line);
	background: var(--bg-alt);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}

.hero-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform 200ms ease-out;
}

.hero-media:hover img {
	transform: scale(1.02);
}

.hero-media:hover .media-tag {
	background: var(--accent);
}

.media-tag {
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--ink);
	color: var(--bg);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 8px 12px;
}

/* ---------- Details ---------- */

.details {
	padding: 80px 0;
	border-bottom: 1px solid var(--line);
	background: var(--bg-alt);
}

.section-title {
	margin: 0 0 40px;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.details-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
}

.detail-card {
	padding: 24px;
	border-right: 1px solid var(--line);
}

.detail-card:last-child {
	border-right: none;
}

.detail-card h3 {
	margin: 0 0 14px;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 700;
}

.detail-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.detail-card li {
	padding: 8px 0;
	border-top: 1px solid rgba(17, 17, 17, 0.12);
	font-size: 15px;
}

.detail-card li:first-child {
	border-top: none;
	padding-top: 0;
}

.note {
	margin-top: 28px;
	font-size: 14px;
	color: var(--muted);
}

/* ---------- Contact ---------- */

.contact {
	padding: 80px 0;
	border-bottom: 1px solid var(--line);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid var(--line);
	background: var(--bg-alt);
}

.contact-card {
	padding: 32px;
	border-right: 1px solid var(--line);
}

.contact-card:last-child {
	border-right: none;
}

.contact-role {
	margin: 0 0 12px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

.contact-card h3 {
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.005em;
}

.contact-company {
	margin: 0 0 18px;
	color: var(--ink-soft);
	font-size: 14px;
}

.contact-lines {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-lines a {
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px solid var(--line);
	align-self: flex-start;
	padding-bottom: 2px;
}

.contact-lines a:hover {
	border-bottom-color: var(--accent);
}

.partnership {
	margin: 32px 0 0;
	padding: 18px 20px;
	border: 1px solid var(--line);
	font-size: 14px;
	letter-spacing: 0.02em;
	background: var(--bg-alt);
}

/* ---------- Warehouse / Finn ad highlight ---------- */

.warehouse {
	padding: 80px 0 96px;
	background: var(--ink);
	color: var(--bg);
}

.warehouse .eyebrow {
	color: rgba(244, 242, 237, 0.7);
}

.warehouse .section-title {
	color: var(--bg);
	margin-bottom: 40px;
}

.warehouse-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--bg);
	text-decoration: none;
	color: var(--bg);
	background: var(--ink);
	transition: background 120ms linear;
}

.warehouse-card:hover {
	background: #1a1a1a;
	color: var(--bg);
}

.warehouse-card:hover .warehouse-link {
	color: var(--accent);
}

.warehouse-media {
	border-right: 1px solid var(--bg);
	overflow: hidden;
}

.warehouse-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.warehouse-copy {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.warehouse-copy h3 {
	margin: 0;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	letter-spacing: -0.005em;
}

.warehouse-copy p {
	margin: 0;
	color: rgba(244, 242, 237, 0.78);
	font-size: 16px;
	max-width: 52ch;
}

.warehouse-link {
	margin-top: 8px;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--bg);
	padding: 32px 0;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 13px;
}

.footer-meta {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.hero {
		padding: 40px 0 48px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hero-media {
		order: -1;
	}

	.details, .contact, .warehouse {
		padding: 56px 0;
	}

	.details-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.detail-card {
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.detail-card:nth-child(2n) {
		border-right: none;
	}

	.detail-card:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-card {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}

	.contact-card:last-child {
		border-bottom: none;
	}

	.warehouse-card {
		grid-template-columns: 1fr;
	}

	.warehouse-media {
		border-right: none;
		border-bottom: 1px solid var(--bg);
	}
}

@media (max-width: 600px) {
	.nav {
		display: none;
	}

	.hero-meta {
		grid-template-columns: 1fr;
	}

	.meta-item {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}

	.meta-item:last-child {
		border-bottom: none;
	}

	.details-grid {
		grid-template-columns: 1fr;
	}

	.detail-card {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}

	.detail-card:last-child {
		border-bottom: none;
	}
}
