/**
 * Freiherr von Moreau Saatzucht GmbH – Coming Soon
 * Minimal, modern, accessible static styles (WCAG 2.2 AA).
 */

:root {
	/* Brand colours */
	--color-green: rgb(135, 180, 27);          /* accent / decorative only */
	--color-green-dark: rgb(93, 124, 18);      /* darker shade for text/links (AA contrast on white) */
	--color-stone: rgb(81, 74, 71);            /* primary text */

	--color-bg: #ffffff;
	--color-bg-soft: #f6f7f1;
	--color-border: #e3e5da;

	--max-width: 56rem;
	--radius: 12px;
	--shadow: 0 10px 30px rgba(81, 74, 71, 0.08);

	--font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: var(--font-stack);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--color-stone);
	background-color: var(--color-bg);
}

/* Accessible focus outline for keyboard users */
a:focus-visible,
:focus-visible {
	outline: 3px solid var(--color-green-dark);
	outline-offset: 2px;
	border-radius: 2px;
}

/* Skip link */
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--color-stone);
	color: #fff;
	padding: 0.75rem 1.25rem;
	z-index: 100;
}

.skip-link:focus {
	left: 0;
}

a {
	color: var(--color-green-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	color: var(--color-stone);
}

/* ---------------------------------------------------------------- Layout */

.page-header {
	border-top: 6px solid var(--color-green);
	background-color: var(--color-bg);
}

.page-header-inner,
.page-main-inner,
.page-footer-inner {
	width: 100%;
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.page-header-inner {
	padding-block: 2rem;
	text-align: center;
}

.site-logo {
	display: block;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	border-radius: var(--radius);
}

.page-main {
	flex: 1 0 auto;
	padding-block: 2.5rem 4rem;
}

.page-main-inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* ----------------------------------------------------------- Hero / intro */

.hero {
	text-align: center;
}

.hero-eyebrow {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.35rem 0.9rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-green-dark);
	background-color: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-radius: 999px;
}

.hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 5vw, 2.75rem);
	line-height: 1.15;
	color: var(--color-stone);
}

.hero p {
	margin: 0 auto;
	max-width: 40rem;
	color: var(--color-stone);
}

/* ------------------------------------------------------------ Contact card */

.contact-card {
	background-color: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-left: 6px solid var(--color-green);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-card h2 {
	margin: 0 0 1.25rem;
	font-size: 1.375rem;
	color: var(--color-stone);
}

.contact-address {
	font-style: normal;
	margin: 0;
}

.contact-address .company {
	font-weight: 700;
}

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

.contact-list li {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.contact-list .label {
	min-width: 4rem;
	font-weight: 600;
	color: var(--color-green-dark);
}

/* --------------------------------------------------------------- Content */

.content h1 {
	margin-top: 0;
	font-size: clamp(1.7rem, 4vw, 2.25rem);
	color: var(--color-stone);
}

.content h2 {
	margin-top: 2rem;
	font-size: 1.3rem;
	color: var(--color-stone);
}

.content h3 {
	margin-top: 1.5rem;
	font-size: 1.1rem;
	color: var(--color-stone);
}

.content p,
.content ul,
.content address {
	max-width: 46rem;
}

.content address {
	font-style: normal;
}

.back-link {
	display: inline-block;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

/* ---------------------------------------------------------------- Footer */

.page-footer {
	flex-shrink: 0;
	background-color: var(--color-stone);
	color: #fff;
}

.page-footer a {
	color: #fff;
}

.page-footer a:hover {
	color: var(--color-green);
}

.page-footer-inner {
	padding-block: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	align-items: center;
	justify-content: space-between;
}

.footer-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
}

.footer-copy {
	margin: 0;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 32rem) {
	.page-footer-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Respect reduced-motion preference (no animation here, but future-proof) */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}