/* SavanaPics — style */
:root {
	--bg: #1a1410;
	--bg-light: #241c16;
	--text: #f1ece3;
	--text-muted: #a89e8f;
	--accent: #c9924a;
	--border: #3a2e24;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	background: var(--bg-light);
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	letter-spacing: -0.5px;
	line-height: 1.05;
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h4 { font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; }

.eyebrow {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
	margin-bottom: 24px;
}
.eyebrow.dark { color: var(--accent); }

/* Header */
.site-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 10;
	padding: 28px 0;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #fff;
}
.logo span { color: var(--accent); font-style: italic; }
.logo.light { color: #fff; }
.nav {
	display: flex;
	gap: 36px;
}
.nav a {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.nav a:hover { opacity: 1; color: var(--accent); }

/* Hero */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=2000&q=80');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14,13,11,0.55) 0%, rgba(14,13,11,0.3) 40%, rgba(14,13,11,0.75) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}
.hero h1 {
	color: #fff;
	margin-bottom: 28px;
}
.hero .lead {
	font-size: 18px;
	opacity: 0.9;
	max-width: 540px;
	margin-bottom: 40px;
	font-weight: 300;
}
.btn {
	display: inline-block;
	padding: 16px 38px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 0;
	transition: background 0.25s, transform 0.25s;
}
.btn:hover {
	background: #b57f38;
	transform: translateY(-2px);
}

/* Sections */
.gallery-section {
	padding: 140px 0 120px;
	background: var(--bg-light);
	color: var(--text);
}
.section-head {
	text-align: center;
	margin-bottom: 80px;
}
.section-head h2 { color: var(--text); }

/* Gallery grid */
.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 320px;
	gap: 20px;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	background: #ddd;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 20px 24px;
	color: #fff;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
	opacity: 0;
	transition: opacity 0.3s;
}
.gallery-item:hover figcaption { opacity: 1; }

/* About */
.about {
	padding: 120px 0;
	background: #2b2119;
	color: var(--text);
}
.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about h2 { margin-bottom: 30px; }
.about p {
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 18px;
}
.about-image img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

/* Footer */
.site-footer {
	background: var(--bg);
	color: #d9d3c7;
	padding: 90px 0 24px;
}
.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
	margin-top: 18px;
	font-size: 14px;
	opacity: 0.65;
	line-height: 1.7;
}
.footer-col h4 {
	color: var(--accent);
	margin-bottom: 20px;
}
.footer-col p {
	font-size: 14px;
	margin-bottom: 8px;
	opacity: 0.8;
}
.footer-col a {
	transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
	padding-top: 24px;
	font-size: 12px;
	opacity: 0.5;
	letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
	.nav { display: none; }
	.gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 240px;
	}
	.about-inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.about-image img { height: 380px; }
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.gallery-section { padding: 90px 0; }
	.about { padding: 80px 0; }
}
@media (max-width: 560px) {
	.container { padding: 0 20px; }
	.gallery {
		grid-template-columns: 1fr;
		grid-auto-rows: 260px;
	}
	.gallery-item.tall { grid-row: span 1; }
	.footer-inner { grid-template-columns: 1fr; gap: 36px; }
	.hero .lead { font-size: 16px; }
}
