/**
 * index.html — single-screen landing (reddish brand, no orange).
 * Brand accent ~ #eb6165 (matches main.css links).
 */

:root {
	--st-brand: #eb6165;
	--st-brand-deep: #c94d52;
	--st-brand-soft: rgba(235, 97, 101, 0.35);
}

.st-landing {
	position: relative;
	flex: 1;
	min-height: 0;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	color: #fff;
}

.st-landing__bg-stack {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.st-landing__bg-layer {
	position: absolute;
	inset: 0;
	background-color: #140808;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.4s ease-in-out;
	pointer-events: none;
}

.st-landing__bg-layer.is-active {
	opacity: 1;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.st-landing__bg-layer {
		transition-duration: 0.01ms;
	}
}

.st-landing__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		165deg,
		rgba(235, 97, 101, 0.42) 0%,
		rgba(40, 12, 16, 0.5) 42%,
		rgba(8, 6, 8, 0.88) 100%
	);
}

.st-landing__gradient::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 75% 55% at 50% 100%, rgba(235, 97, 101, 0.12), transparent 72%);
}

.st-landing__inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr);
	gap: clamp(16px, 4vw, 48px);
	align-items: center;
	padding: clamp(88px, 12vh, 112px) clamp(16px, 4vw, 48px) clamp(16px, 3vh, 32px);
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	min-height: 0;
}

.st-landing__rail {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0.5rem;
}

.st-landing__rail-text {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	line-height: 0.95;
	letter-spacing: 0.02em;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.st-landing__rail-line {
	display: inline-block;
	text-transform: none;
	font-feature-settings: "kern" 1;
}

.st-landing__rail-letter {
	color: var(--st-brand);
	font-weight: 900;
	text-shadow:
		0 4px 28px var(--st-brand-soft),
		0 2px 12px rgba(0, 0, 0, 0.4);
	display: inline-block;
	transform: scale(1.06);
}

.st-landing__rail-line--x .st-landing__rail-letter {
	font-size: 1.08em;
}

.st-landing__center {
	max-width: 36rem;
	min-width: 0;
}

.st-landing__season {
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	opacity: 0.85;
	margin: 0 0 10px;
}

.st-landing__tag {
	font-size: clamp(0.85rem, 1.5vw, 0.95rem);
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 20px;
	line-height: 1.5;
}

.st-landing__label {
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 8px;
}

.st-landing__headline {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.08;
	margin: 0 0 16px;
	text-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
}

.st-landing__lede {
	font-family: "Roboto", sans-serif;
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 28px;
	max-width: 32em;
}

.st-landing__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.st-landing__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 2px;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.st-landing__btn--primary {
	background: var(--st-brand);
	color: #fff !important;
	border: 2px solid var(--st-brand);
	box-shadow: 0 8px 28px var(--st-brand-soft);
}

.st-landing__btn--primary:hover,
.st-landing__btn--primary:focus {
	background: var(--st-brand-deep);
	border-color: var(--st-brand-deep);
	color: #fff !important;
	transform: translateY(-1px);
}

.st-landing__bottom {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 12px clamp(16px, 4vw, 48px) max(16px, env(safe-area-inset-bottom));
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
}

.st-landing__social {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: center;
}

.st-landing__social a {
	color: rgba(255, 255, 255, 0.55) !important;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none !important;
}

.st-landing__social a:hover {
	color: #fff !important;
}

@media screen and (max-width: 991px) {
	.st-landing__inner {
		grid-template-columns: 1fr;
		padding-top: clamp(92px, 16vh, 128px);
	}

	.st-landing__rail {
		order: 2;
		justify-content: flex-start;
	}

	.st-landing__rail-text {
		writing-mode: horizontal-tb;
		transform: none;
		font-size: clamp(2rem, 10vw, 3rem);
		line-height: 1;
		margin-bottom: 8px;
	}

	.st-landing__center {
		order: 1;
		max-width: none;
	}
}

@media screen and (max-width: 600px) {
	.st-landing__inner {
		grid-template-columns: 1fr;
		padding-top: clamp(86px, 14vh, 108px);
		padding-right: 72px;
		padding-bottom: 14px;
		padding-left: 14px;
	}

	.st-landing__headline {
		font-size: clamp(1.6rem, 8vw, 2.1rem);
		margin-bottom: 10px;
	}

	.st-landing__lede {
		font-size: 0.9rem;
		line-height: 1.45;
		margin-bottom: 16px;
	}

	.st-landing__cta-row {
		gap: 8px;
	}

	.st-landing__btn {
		padding: 11px 16px;
		font-size: 10px;
		letter-spacing: 0.11em;
	}

	.st-landing__bottom {
		padding-top: 8px;
		padding-bottom: max(10px, env(safe-area-inset-bottom));
	}
}
