@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
	--bg-primary: #0b0b0b;
	--bg-secondary: #111111;
	--gold: #d4af37;
	--gold-dark: #a8892c;
	--text: #ffffff;
	--text-muted: #cfcfcf;
	--radius: 10px;
	--shadow-gold: 0 0 35px rgba(212, 175, 55, 0.18);
	--container: min(1120px, 92vw);
	--transition: 240ms ease;
}

* {
	box-sizing: border-box;
}

/* Age gate */
.age-gate {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

body.age-gate-open {
	overflow: hidden;
}

body.age-gate-open .age-gate {
	display: flex;
}

.age-gate__box {
	background: var(--bg-secondary);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: var(--radius);
	box-shadow: var(--shadow-gold);
	padding: clamp(2rem, 5vw, 3.5rem);
	max-width: 480px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.age-gate__logo {
	width: clamp(160px, 40%, 240px);
	height: auto;
	margin-bottom: 0.5rem;
}

.age-gate__kicker {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
	color: var(--gold);
	margin: 0;
}

.age-gate__title {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.age-gate__sub {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
}

.age-gate__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}

html {
	scroll-behavior: smooth;
}

body.strangerseeds-dark {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background: var(--bg-primary);
	color: var(--text);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	overflow-x: hidden;
}

.site-bg {
position: fixed;
inset: 0;
z-index: -1;
background-image:
linear-gradient(rgba(10,10,10,0.45), rgba(10,10,10,0.65)),
url("http://strangerseeds.de/wp-content/uploads/2026/04/backgroundv1.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

.site-bg::before,
.site-bg::after {
	content: '';
	position: absolute;
	inset: -20%;
	background-image:
		radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.26), transparent 52%),
		radial-gradient(2px 2px at 80% 20%, rgba(212, 175, 55, 0.2), transparent 50%),
		radial-gradient(1.5px 1.5px at 50% 80%, rgba(212, 175, 55, 0.18), transparent 48%),
		radial-gradient(1.5px 1.5px at 10% 75%, rgba(212, 175, 55, 0.2), transparent 48%),
		radial-gradient(2px 2px at 90% 70%, rgba(212, 175, 55, 0.18), transparent 52%);
	opacity: 0.38;
	animation: floatParticles 28s linear infinite;
	pointer-events: none;
}

.site-bg::after {
	animation-duration: 44s;
	opacity: 0.24;
	transform: rotate(9deg) scale(1.08);
}

@keyframes floatParticles {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(-2.4%, -1.2%, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(8px);
	background: rgba(11, 11, 11, 0.75);
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 0;
	text-decoration: none;
	color: var(--text);
}

.brand__logo {
	display: block;
	height: clamp(3.8rem, 3.1rem + 1.8vw, 5.4rem);
	width: auto;
	max-width: none;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand__wordmark {
	font-family: 'Cinzel', serif;
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
	text-transform: uppercase;
}

.site-nav .menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
}

.site-nav a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--gold);
}

.hero {
	padding: clamp(4.2rem, 10vw, 7.2rem) 0 4rem;
}

.editable-content {
	padding: clamp(3.2rem, 7vw, 5.2rem) 0;
}

.entry-content {
	max-width: 1080px;
}

.entry-content--full {
	max-width: none;
}

.entry-content > * {
	margin-block: 0;
}

.entry-content > * + * {
	margin-top: 1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: 'Cinzel', serif;
	line-height: 1.2;
}

.entry-content p,
.entry-content li,
.entry-content blockquote {
	color: var(--text-muted);
}

.entry-content a {
	color: var(--gold);
	text-decoration: none;
}

.entry-content a:hover,
.entry-content a:focus-visible {
	color: #f0cc58;
}

.entry-content .wp-block-button__link {
	border-radius: var(--radius);
	border: 1px solid rgba(212, 175, 55, 0.6);
	background: linear-gradient(120deg, var(--gold-dark), var(--gold));
	color: #1a1a1a;
	font-weight: 600;
	box-shadow: var(--shadow-gold);
	transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button__link:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 0 42px rgba(212, 175, 55, 0.32);
}

.entry-content .wp-block-group,
.entry-content .wp-block-cover,
.entry-content .wp-block-columns {
	border-radius: var(--radius);
	border: 1px solid rgba(212, 175, 55, 0.2);
	background: linear-gradient(145deg, rgba(17, 17, 17, 0.94), rgba(11, 11, 11, 0.94));
	padding: clamp(1rem, 2.1vw, 1.5rem);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: clamp(1.4rem, 3.2vw, 2.9rem);
	align-items: center;
}

.kicker {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
	color: var(--gold);
	margin: 0 0 1rem;
}

h1,
h2,
h3 {
	font-family: 'Cinzel', serif;
	line-height: 1.2;
	margin: 0;
	font-weight: 600;
}

h1 {
	font-size: clamp(2.2rem, 5.6vw, 4.3rem);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

h1 span {
	font-size: clamp(1.05rem, 2.2vw, 1.5rem);
	display: block;
	color: var(--gold);
	margin-top: 0.5rem;
	letter-spacing: 0.12em;
}

.hero__sr-title {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hero__brandmark {
	display: inline-flex;
	align-items: center;
	max-width: min(100%, 660px);
	padding: 0;
	margin-bottom: 0.85rem;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hero__brandmark::before {
	content: none;
}

.hero__brandmark-image {
	position: relative;
	display: block;
	width: min(100%, 600px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.3));
}

.hero__lead {
	max-width: 60ch;
	color: #d8d8d8;
	font-size: clamp(1.06rem, 1.35vw, 1.28rem);
	line-height: 1.55;
	margin: 1.25rem 0 2rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.86rem 1.45rem;
	border-radius: calc(var(--radius) + 1px);
	border: 1px solid rgba(212, 175, 55, 0.6);
	background: linear-gradient(120deg, var(--gold-dark), var(--gold));
	color: #1a1a1a;
	font-weight: 600;
	font-size: 1.03rem;
	text-decoration: none;
	transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
	box-shadow: var(--shadow-gold);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 0 42px rgba(212, 175, 55, 0.32);
}

.button--ghost {
	background: rgba(10, 10, 10, 0.9);
	border-color: rgba(212, 175, 55, 0.7);
	color: var(--text);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	box-shadow: 0 0 26px rgba(212, 175, 55, 0.22);
}

.hero__visual {
	position: relative;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	align-self: start;
}

.ornament {
	position: absolute;
	inset: 0;
	border-radius: calc(var(--radius) + 8px);
	background: radial-gradient(circle at 18% 25%, rgba(212, 175, 55, 0.2), transparent 42%);
	filter: blur(14px);
}

.hero-card {
	position: relative;
	width: min(100%, 450px);
	padding: clamp(1.55rem, 2.6vw, 2.1rem);
	border-radius: calc(var(--radius) + 7px);
	border: 1px solid rgba(212, 175, 55, 0.45);
	background: linear-gradient(170deg, rgba(17, 17, 17, 0.95), rgba(10, 10, 10, 0.97));
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.09), 0 20px 46px rgba(0, 0, 0, 0.48), 0 0 26px rgba(212, 175, 55, 0.18), 0 0 54px rgba(212, 175, 55, 0.1);
}

.hero-card__top {
	margin: 0;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero-card__title {
	margin: 0.65rem 0 0.8rem;
	font-size: clamp(1.65rem, 2.4vw, 2.1rem);
	font-family: 'Cinzel', serif;
	text-transform: uppercase;
}

.hero-card__text {
	margin: 0;
	max-width: 24ch;
	font-size: clamp(1.03rem, 1.25vw, 1.22rem);
	line-height: 1.5;
	color: var(--text-muted);
}

.text-link {
	display: inline-flex;
	margin-top: 1rem;
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
}

.text-link:hover,
.text-link:focus-visible {
	color: #f0cc58;
}

.identity,
.selection,
.cta-band {
	padding: clamp(3.2rem, 7vw, 5rem) 0;
}

.identity__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.panel {
	padding: 1.4rem;
	background: linear-gradient(145deg, rgba(17, 17, 17, 0.94), rgba(11, 11, 11, 0.94));
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: var(--radius);
}

.panel h2 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.panel p {
	margin: 0;
	color: var(--text-muted);
}

.section-head {
	max-width: 62ch;
	margin-bottom: 1.25rem;
}

.section-head h2 {
	font-size: clamp(1.45rem, 3.3vw, 2.3rem);
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.seed-card {
	background: var(--bg-secondary);
	border-radius: var(--radius);
	padding: 1rem;
	border: 1px solid rgba(212, 175, 55, 0.24);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.seed-card:hover {
	transform: translateY(-3px);
	border-color: rgba(212, 175, 55, 0.48);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.seed-card__visual {
	height: 190px;
	border-radius: calc(var(--radius) - 2px);
	margin-bottom: 0.85rem;
	border: 1px solid rgba(212, 175, 55, 0.2);
	overflow: hidden;
}

.seed-card__visual img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: inherit;
}

.seed-card__visual-fallback {
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 22% 28%, rgba(212, 175, 55, 0.42), transparent 45%), linear-gradient(150deg, #241d0e, #0b0b0b 62%);
}

.seed-card h3 {
	font-size: 1.25rem;
}

.seed-card p {
	color: var(--text-muted);
	margin: 0.6rem 0 0.4rem;
}

.cta-band__inner {
	background: linear-gradient(140deg, rgba(17, 17, 17, 0.95), rgba(24, 20, 10, 0.9));
	border: 1px solid rgba(212, 175, 55, 0.4);
	border-radius: calc(var(--radius) + 2px);
	padding: clamp(1.4rem, 3vw, 2rem);
	display: grid;
	gap: 0.85rem;
	justify-items: start;
}

.cta-band__inner p {
	margin: 0;
	color: var(--text-muted);
}

.selection-page {
	padding: clamp(3.4rem, 8vw, 6rem) 0;
}

.selection-page .section-head {
	max-width: 74ch;
	margin-bottom: 1.6rem;
}

.selection-page__lead {
	margin: 0.95rem 0 0;
	color: var(--text-muted);
}

.selection-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.selection-product {
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--radius) + 3px);
	border: 1px solid rgba(212, 175, 55, 0.3);
	background: linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.95));
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08), 0 16px 34px rgba(0, 0, 0, 0.35);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.selection-product--interactive {
	cursor: pointer;
}

.selection-product:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.56);
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12), 0 18px 38px rgba(0, 0, 0, 0.42);
}

.selection-product:focus-visible {
	outline: 2px solid rgba(212, 175, 55, 0.72);
	outline-offset: 3px;
}

.selection-product__link {
	display: block;
	padding: 1.2rem;
	color: inherit;
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.selection-product__figure {
	margin: 0 0 0.95rem;
}

.selection-product__actions {
	position: relative;
	margin-top: 1rem;
	z-index: 1;
}

.selection-product__actions .wp-block-button {
	width: 100%;
}

.selection-product__actions .wp-block-button__link {
	width: 100%;
	text-align: center;
}

.selection-product::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.16), transparent 46%);
	pointer-events: none;
}

.selection-product__image {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: calc(var(--radius) - 2px);
	border: 1px solid rgba(212, 175, 55, 0.24);
	margin-bottom: 0.95rem;
	display: block;
}

.selection-tile {
	position: relative;
	overflow: hidden;
	padding: 1.2rem;
	border-radius: calc(var(--radius) + 3px);
	border: 1px solid rgba(212, 175, 55, 0.3);
	background: linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.95));
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08), 0 16px 34px rgba(0, 0, 0, 0.35);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.selection-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.16), transparent 46%);
	pointer-events: none;
}

.selection-tile:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.56);
	box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12), 0 18px 38px rgba(0, 0, 0, 0.42);
}

.selection-tile__title {
	position: relative;
	font-size: 1.3rem;
	margin-bottom: 0.95rem;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.selection-attrs {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.6rem;
}

.selection-attrs li {
	display: grid;
	gap: 0.2rem;
	padding: 0.55rem 0.65rem;
	border-radius: calc(var(--radius) - 2px);
	background: rgba(17, 17, 17, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.16);
}

.selection-attrs span {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--gold);
	font-weight: 600;
}

.selection-attrs strong {
	font-size: 0.93rem;
	line-height: 1.45;
	color: var(--text-muted);
	font-weight: 500;
}

.selection-editor .container {
	width: var(--container);
	margin-inline: auto;
}

.selection-editor .wp-block-group {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.selection-editor .section-head.wp-block-group {
	display: block;
}

.selection-editor .selection-grid + * {
	margin-top: 0;
}

.site-footer {
	padding: 2rem 0 2.5rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	background: rgba(11, 11, 11, 0.85);
}

.site-footer__inner {
	display: grid;
	gap: 0.5rem;
}

.site-footer__brand {
	margin: 0;
	font-family: 'Cinzel', serif;
	font-size: 1.1rem;
	color: var(--gold);
}

.site-footer__meta {
	margin: 0 0 0.7rem;
	color: var(--text-muted);
}

.site-footer__links {
	margin: 0 0 0.9rem;
}

.site-footer__link {
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
	color: #f0cc58;
}

.site-footer__sep {
	color: var(--text-muted);
	margin: 0 0.5rem;
	user-select: none;
}

[data-reveal],
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
	will-change: opacity, transform;
}

[data-reveal].is-visible,
.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 980px) {
	.site-header__inner {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0.7rem;
	}

	.site-nav {
		width: 100%;
	}

	.site-nav .menu {
		justify-content: center;
	}

	.hero__grid,
	.identity__grid,
	.cards,
	.selection-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 3rem;
	}

	.hero__visual {
		justify-content: flex-start;
	}

	.hero-card {
		width: 100%;
	}

	.hero__brandmark {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.brand__logo {
		height: clamp(3.2rem, 2.9rem + 1.4vw, 4.2rem);
	}

	.site-nav .menu {
		gap: 0.75rem;
		font-size: 0.92rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.button {
		width: 100%;
	}

	.hero__actions {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
		scroll-behavior: auto !important;
	}
}
