:root {
	--primary-bg: #18242B;
	--accent-gold: #E9C88C;
	--accent-soft: rgba(233, 200, 140, 0.14);
	--text-light: #ffffff;
	--text-muted: rgba(255, 255, 255, 0.82);
	--border-soft: rgba(233, 200, 140, 0.28);
	--shadow: rgba(0, 0, 0, 0.28);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Georgia', 'Times New Roman', serif;
	line-height: 1.8;
	color: var(--text-light);
	background:
		radial-gradient(circle at top right, rgba(233, 200, 140, 0.10), transparent 30%),
		linear-gradient(180deg, #1a2730 0%, var(--primary-bg) 25%, #152128 100%);
	min-height: 100vh;
	padding-top: 80px;
}

a {
	color: var(--accent-gold);
	text-decoration: none;
}

a:hover {
	opacity: 0.86;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-container {
	max-width: 980px;
	margin: 0 auto;
	padding: 120px 20px 60px;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(24, 36, 43, 0.95);
	backdrop-filter: blur(10px);
	z-index: 999;
	padding: 15px 0;
	border-bottom: 2px solid var(--accent-gold);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 999;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--accent-gold);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo img {
	height: 50px;
	width: auto;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--accent-gold);
}

.nav-links a.nav-cta {
	color: var(--accent-gold);
	font-weight: 700;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-gold);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	padding: 5px;
	z-index: 1002;
	position: relative;
}

.menu-toggle span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--accent-gold);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.page-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 34px 28px;
	border: 1px solid var(--border-soft);
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(233, 200, 140, 0.12), rgba(233, 200, 140, 0.04));
	box-shadow: 0 18px 40px var(--shadow);
}

.eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--border-soft);
	color: var(--accent-gold);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

h1 {
	color: var(--accent-gold);
	font-size: 3rem;
	margin-bottom: 18px;
	line-height: 1.15;
	background: linear-gradient(135deg, #d4af37 0%, #f4e6c3 25%, #d4af37 50%, #aa8c2e 75%, #d4af37 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.intro,
.lede {
	font-size: 1.18rem;
	color: var(--text-muted);
	max-width: 760px;
	margin: 0 auto;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 26px;
}

.section-card,
.info-grid article,
.quote-box,
.cta-box,
.article-card,
.quick-facts,
.breadcrumb {
	background: rgba(233, 200, 140, 0.06);
	border: 1px solid var(--border-soft);
	border-radius: 22px;
	box-shadow: 0 14px 34px var(--shadow);
}

.breadcrumb {
	padding: 14px 18px;
	margin-bottom: 22px;
	color: var(--text-muted);
}

.breadcrumb a {
	color: var(--accent-gold);
}

.section-card {
	padding: 32px;
}

.section-card h2,
.article-card h2,
.cta-box h2,
.quote-box h2 {
	color: var(--accent-gold);
	font-size: 1.9rem;
	margin-bottom: 18px;
}

.section-card p,
.article-card p,
.quote-box p,
.cta-box p,
.quick-facts p,
.quick-facts li {
	color: var(--text-muted);
	margin-bottom: 14px;
}

.section-card ul,
.section-card ol,
.article-card ul,
.quick-facts ul,
.quote-box ul {
	margin-left: 22px;
	margin-bottom: 14px;
}

.section-card li,
.article-card li,
.quick-facts li,
.quote-box li {
	margin-bottom: 10px;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.info-grid article {
	padding: 28px;
}

.info-grid h3,
.quick-facts h3,
.article-card h3 {
	color: var(--accent-gold);
	font-size: 1.35rem;
	margin-bottom: 14px;
}

.quote-box,
.quick-facts,
.cta-box {
	padding: 30px;
}

.quote-box blockquote {
	font-size: 1.1rem;
	color: var(--text-light);
	border-left: 3px solid var(--accent-gold);
	padding-left: 18px;
	margin: 18px 0;
}

.quote-box .source {
	color: var(--text-muted);
	font-size: 0.96rem;
}

.cta-box {
	text-align: center;
	background: linear-gradient(135deg, rgba(233, 200, 140, 0.16), rgba(233, 200, 140, 0.06));
}

.cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.btn {
	display: inline-block;
	padding: 15px 32px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
	background: linear-gradient(45deg, var(--accent-gold), #f4d6a7);
	color: var(--primary-bg);
	box-shadow: 0 8px 24px rgba(233, 200, 140, 0.35);
}

.btn-secondary {
	border: 2px solid var(--accent-gold);
	color: var(--accent-gold);
}

.btn:hover {
	transform: translateY(-2px);
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.article-card {
	padding: 26px;
}

.article-card .meta {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--accent-gold);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.article-card a.read-more {
	font-weight: 700;
}

.back-link {
	display: inline-block;
	margin-top: 18px;
	color: var(--accent-gold);
	font-size: 1.05rem;
}

footer {
	background: var(--primary-bg);
	padding: 60px 0 30px;
	border-top: 2px solid var(--accent-gold);
	margin-top: 80px;
}

.footer-sitemap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-column h3 {
	color: var(--accent-gold);
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(233, 200, 140, 0.3);
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column p {
	color: var(--text-light);
	opacity: 0.82;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(233, 200, 140, 0.2);
	color: var(--text-light);
	opacity: 0.65;
}

@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}

	header {
		padding: 12px 0;
	}

	.content-container {
		padding: 98px 20px 56px;
	}

	.logo img {
		height: 35px;
	}

	.logo {
		font-size: 1.1rem;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(24, 36, 43, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		gap: 0;
		padding: 20px 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
		border-bottom: 2px solid var(--accent-gold);
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
		z-index: 1001;
	}

	.nav-links.active {
		max-height: 520px;
	}

	.nav-links li {
		border-bottom: 1px solid rgba(233, 200, 140, 0.1);
	}

	.nav-links li:last-child {
		border-bottom: none;
	}

	.nav-links a {
		display: block;
		padding: 15px 30px;
		font-size: 1.05rem;
	}

	.nav-links a::after {
		display: none;
	}

	h1 {
		font-size: 2.2rem;
	}

	.section-card,
	.article-card,
	.quote-box,
	.quick-facts,
	.cta-box,
	.info-grid article {
		padding: 22px;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.page-header {
		padding: 26px 20px;
	}

	body {
		padding-bottom: 72px;
	}
}

/* Mikro-kontaktskjema i artikler */
.micro-form {
	padding: 30px;
	text-align: center;
	background: linear-gradient(135deg, rgba(233, 200, 140, 0.12), rgba(233, 200, 140, 0.04));
	border: 1px solid var(--border-soft);
	border-radius: 22px;
	box-shadow: 0 14px 34px var(--shadow);
}

.micro-form h2 {
	color: var(--accent-gold);
	font-size: 1.6rem;
	margin-bottom: 8px;
}

.micro-form p {
	color: var(--text-muted);
	margin-bottom: 18px;
	font-size: 1rem;
}

.micro-form form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	max-width: 540px;
	margin: 0 auto;
}

.micro-form input,
.micro-form textarea {
	font-family: 'Georgia', serif;
	font-size: 0.95rem;
	padding: 12px 16px;
	border: 1px solid var(--border-soft);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-light);
	transition: border-color 0.3s ease;
}

.micro-form input:focus,
.micro-form textarea:focus {
	outline: none;
	border-color: var(--accent-gold);
}

.micro-form input::placeholder,
.micro-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.micro-form textarea {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 70px;
}

.micro-form .micro-form-submit {
	grid-column: 1 / -1;
	justify-self: center;
}

.micro-form .micro-form-success {
	grid-column: 1 / -1;
	color: var(--accent-gold);
	font-weight: 700;
	display: none;
}

.micro-form .micro-form-error {
	grid-column: 1 / -1;
	color: #e07070;
	font-weight: 700;
	display: none;
}

@media (max-width: 768px) {
	.micro-form form {
		grid-template-columns: 1fr;
	}
}

/* Sticky mobile CTA bar */
.sticky-mobile-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 998;
	background: rgba(24, 36, 43, 0.97);
	backdrop-filter: blur(10px);
	border-top: 2px solid var(--accent-gold);
	padding: 12px 16px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-mobile-cta .sticky-cta-inner {
	display: flex;
	gap: 10px;
	justify-content: center;
	max-width: 480px;
	margin: 0 auto;
}

.sticky-mobile-cta .btn-sticky {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	font-family: 'Georgia', serif;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-mobile-cta .btn-sticky:hover {
	transform: translateY(-1px);
}

.sticky-mobile-cta .btn-sticky-ring {
	background: linear-gradient(45deg, var(--accent-gold), #f4d6a7);
	color: var(--primary-bg);
	box-shadow: 0 4px 16px rgba(233, 200, 140, 0.35);
}

.sticky-mobile-cta .btn-sticky-msg {
	border: 2px solid var(--accent-gold);
	color: var(--accent-gold);
	background: transparent;
}

.sticky-mobile-cta .btn-sticky svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.sticky-mobile-cta {
		display: block;
	}
}