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

:root {
	--navy: #2f3254;
	--navy-light: #3d4168;
	--gold: #c9a227;
	--gold-light: #d7b75a;
	--gold-muted: rgba(201, 162, 39, 0.12);
	--text: #2c2c2c;
	--text-muted: #5a5a5a;
	--border: #e2e4e8;
	--bg-page: #f4f5f7;
	--bg-card: #ffffff;
	--white: #ffffff;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family:
		'DM Sans',
		system-ui,
		-apple-system,
		sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg-page);
	display: flex;
	flex-direction: column;
}

/* ----- Header ----- */
.header {
	background: var(--white);
	border-bottom: 3px solid var(--gold);
	padding: 1.75rem 1.5rem;
}

.header-inner {
	max-width: 72rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 52px;
}

/* ----- Main ----- */
.main {
	flex: 1;
	padding: 2.5rem 1.5rem 3rem;
}

.content-wrap {
	max-width: 42rem;
	margin: 0 auto;
}

.intro {
	text-align: center;
	margin-bottom: 2rem;
}

.company-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 0.35em;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.tagline {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin: 0;
	font-weight: 500;
}

.details-card,
.contact-card {
	background: var(--bg-card);
	border-radius: 6px;
	padding: 1.75rem 1.5rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 2px 8px rgba(47, 50, 84, 0.06);
	border: 1px solid var(--border);
}

.section-title {
	font-family: 'DM Sans', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--navy);
	margin: 0 0 1.25rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid var(--gold-muted);
}

.info-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.info-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.15rem 1.5rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid #f0f1f3;
}

.info-row:last-child {
	border-bottom: none;
}

.info-list dt {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	margin: 0;
}

.info-list dd {
	font-size: 0.9375rem;
	color: var(--text);
	margin: 0;
	font-weight: 500;
}

.contact-card {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
	border: none;
	color: var(--white);
}

.contact-card .section-title {
	color: var(--white);
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-email {
	margin: 0;
	font-size: 1.0625rem;
}

.contact-email a {
	color: var(--gold-light);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.contact-email a:hover {
	color: var(--white);
}

/* ----- Document link ----- */
.doc-card {
	background: var(--bg-card);
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 2px 8px rgba(47, 50, 84, 0.06);
	border: 1px solid var(--border);
}

.doc-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
	transition:
		color 0.2s ease,
		background 0.2s ease;
	padding: 0.25rem 0;
	border-radius: 4px;
}

.doc-link:hover {
	color: var(--gold);
}

.doc-title {
	font-size: 0.9375rem;
}

.doc-format {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	padding: 0.2rem 0.5rem;
	background: var(--gold-muted);
	border-radius: 3px;
	color: var(--gold);
}

.doc-link:hover .doc-format {
	background: rgba(201, 162, 39, 0.2);
}

/* ----- Footer ----- */
.footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.85);
	padding: 1.25rem 1.5rem;
	margin-top: auto;
}

.footer-inner {
	max-width: 72rem;
	margin: 0 auto;
	text-align: center;
}

.footer-copy {
	margin: 0 0 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.footer-legal {
	margin: 0;
	font-size: 0.8125rem;
	opacity: 0.8;
}

/* ----- Responsive ----- */
@media (min-width: 640px) {
	.header {
		padding: 2rem 2rem;
	}

	.header-inner {
		justify-content: flex-start;
	}

	.main {
		padding: 3rem 2rem 4rem;
	}

	.company-name {
		font-size: 1.75rem;
	}

	.details-card,
	.contact-card {
		padding: 2rem 2rem;
		margin-bottom: 1.5rem;
	}

	.info-row {
		grid-template-columns: 11rem 1fr;
		align-items: baseline;
	}

	.footer-inner {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
		text-align: left;
	}

	.footer-copy,
	.footer-legal {
		margin: 0;
	}
}
