/* The Summerlands — Soft Brutalist Redesign */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

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

.grain {
	position: fixed;
	inset: 0;
	z-index: 100;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 256px 256px;
}

html { font-size: 16px; }

body {
	font-family: 'IBM Plex Mono', monospace;
	background: linear-gradient(170deg, #0f1419 0%, #1a2028 50%, #1e2430 100%);
	color: #c8d6e5;
	line-height: 1.7;
	min-height: 100vh;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

nav, main, footer {
	max-width: 720px;
	margin: 0 auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

nav, footer { position: relative; z-index: 10; }

/* === Nav === */
nav {
	padding-top: 3.5rem;
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 400;
}

.nav-link {
	color: #6b7f94;
	text-decoration: none;
	font-weight: 300;
	position: relative;
	transition: color 0.4s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #c8d6e5;
	transition: width 0.4s ease;
}

.nav-link:hover { color: #c8d6e5; }
.nav-link:hover::after { width: 100%; }

.divider {
	color: #2a3342;
	margin: 0 0.6rem;
	font-weight: 300;
}

/* === Monument frame === */
.monument-frame {
	position: relative;
	z-index: 10;
	text-align: center;
	margin-top: 5rem;
	padding-left: 1.2rem;
}

.monument-frame::before {
	content: '';
	position: absolute;
	left: 0;
	top: -2rem;
	bottom: 3rem;
	width: 1px;
	background: #2a3342;
}

figure {
	margin-bottom: 2.5rem;
	display: inline-block;
	padding: 0.5rem;
	background: linear-gradient(145deg, #1a2028 0%, #151b23 100%);
	box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(200,214,229,0.03);
}

figure::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid #2a3342;
	pointer-events: none;
}

figure img {
	display: block;
	width: 32vw;
	min-width: 280px;
	max-width: 400px;
	filter: contrast(1.1) saturate(0.3) brightness(0.95);
	transition: filter 0.6s ease;
}

figure img:hover {
	filter: contrast(1.05) saturate(0.5) brightness(1);
}

h1 {
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 600;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #c8d6e5;
	text-shadow: 0 1px 3px rgba(0,0,0,0.6);
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

h1::before {
	content: '';
	display: block;
	width: 40%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2a3342, transparent);
	margin: 0 auto 1.5rem auto;
}

.monument-frame::after {
	content: '';
	position: absolute;
	bottom: -3rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: #2a3342;
}

/* === Footer === */
footer {
	padding-top: 4rem;
	padding-bottom: 3rem;
	text-align: center;
	font-weight: 300;
	letter-spacing: 0.06em;
	color: #2a3342;
	font-size: 0.75rem;
}

footer::before {
	content: '';
	display: block;
	width: 30%;
	height: 1px;
	background: #1e2630;
	margin: 0 auto 2rem auto;
}

@media (max-width: 600px) {
	figure img { width: 50vw; min-width: 200px; max-width: 300px; }
	h1 { letter-spacing: 0.2em; }
}
