/* Ellie Emmeline — main styles */

@font-face {
	font-family: 'Anton';
	src: url('../fonts/anton-latin.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--bg: #0b0b0d;
	--ink: #f4f2ee;
	--muted: #9b9790;
	--accent: #ff2f7e;
	--display: 'Anton', 'Arial Narrow', sans-serif;
	--body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--ink); }

/* Nav */
.ee-nav {
	position: fixed;
	inset: 0 0 auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	z-index: 50;
	background: linear-gradient(rgba(11,11,13,.85), rgba(11,11,13,0));
}
.ee-nav__brand {
	font-family: var(--display);
	font-size: 1.1rem;
	letter-spacing: .08em;
	text-decoration: none;
}
.ee-nav__links a {
	margin-left: 1.25rem;
	text-decoration: none;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
	transition: color .2s;
}
.ee-nav__links a:hover { color: var(--accent); }

/* Hero */
.ee-hero {
	position: relative;
	height: 100svh;
	min-height: 540px;
	display: grid;
	place-items: center;
	overflow: hidden;
}
.ee-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05);
}
.ee-hero__shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(11,11,13,.15) 0%, rgba(11,11,13,.7) 100%),
		linear-gradient(rgba(11,11,13,.2), rgba(11,11,13,.85) 92%);
}
.ee-hero__content {
	position: relative;
	text-align: center;
	padding: 0 1rem;
}
.ee-hero__title {
	font-family: var(--display);
	font-weight: 400;
	font-size: clamp(3.4rem, 13vw, 9rem);
	line-height: .92;
	letter-spacing: .02em;
	text-transform: uppercase;
	text-shadow: 0 4px 40px rgba(0,0,0,.55);
}
.ee-hero__tagline {
	margin: 1.2rem 0 1.8rem;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ink);
}
.ee-btn {
	display: inline-block;
	padding: .9rem 2.2rem;
	border: 2px solid var(--ink);
	font-family: var(--body);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .2em;
	text-decoration: none;
	transition: background .2s, color .2s, border-color .2s;
}
.ee-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}
.ee-hero__scroll {
	position: absolute;
	bottom: 1.4rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.4rem;
	text-decoration: none;
	color: var(--muted);
	animation: ee-bob 2s ease-in-out infinite;
}
@keyframes ee-bob {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 8px); }
}

/* Sections */
.ee-section {
	max-width: 1060px;
	margin: 0 auto;
	padding: 5.5rem 1.25rem 2rem;
}
.ee-h {
	font-family: var(--display);
	font-weight: 400;
	font-size: clamp(2.2rem, 6vw, 3.6rem);
	letter-spacing: .03em;
	margin-bottom: 1.6rem;
	position: relative;
	display: inline-block;
}
.ee-h::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -.35rem;
	width: 3.2rem;
	height: 4px;
	background: var(--accent);
}
.ee-h--sm { font-size: clamp(1.6rem, 4vw, 2.2rem); }

/* Spotify */
.ee-spotify iframe { border-radius: 14px; border: 0; }

/* Videos */
.ee-videos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.ee-video video {
	width: 100%;
	max-height: 78vh;
	background: #000;
	border-radius: 10px;
}
.ee-video figcaption {
	margin-top: .6rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .22em;
	color: var(--muted);
}

/* Gallery */
.ee-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: .8rem;
}
.ee-gallery__item {
	border: 0;
	padding: 0;
	background: none;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: 8px;
}
.ee-gallery__item img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}
.ee-gallery__item:hover img {
	transform: scale(1.04);
	filter: brightness(1.08);
}

/* Lightbox */
.ee-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(5,5,6,.94);
	display: grid;
	place-items: center;
	padding: 2rem;
}
.ee-lightbox[hidden] { display: none; }
.ee-lightbox img {
	max-height: 88vh;
	max-width: 92vw;
	border-radius: 6px;
}
.ee-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1.4rem;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--ink);
	background: none;
	border: 0;
	cursor: pointer;
}

/* Footer / contact */
.ee-footer {
	max-width: 1060px;
	margin: 0 auto;
	padding: 5rem 1.25rem 3.5rem;
	text-align: left;
}
.ee-footer__mail {
	display: inline-block;
	margin: .6rem 0 1.4rem;
	font-family: var(--display);
	font-size: clamp(1.3rem, 4.4vw, 2.4rem);
	letter-spacing: .02em;
	text-decoration: none;
}
.ee-footer__mail:hover { color: var(--accent); }
.ee-social { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-bottom: 2.4rem; }
.ee-social a {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--muted);
}
.ee-social a:hover { color: var(--accent); }
.ee-footer__copy { color: var(--muted); font-size: .8rem; }

/* Reveal on scroll */
.ee-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}
.ee-reveal.is-in {
	opacity: 1;
	transform: none;
}

/* Small screens */
@media (max-width: 560px) {
	.ee-nav__links a { margin-left: .8rem; font-size: .68rem; letter-spacing: .12em; }
	.ee-nav__brand { font-size: .95rem; }
}

/* Generic content (index fallback) */
.ee-prose { margin-top: 1rem; color: var(--ink); }
.ee-prose a { color: var(--accent); }
