*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1a1a1a;
	background: #faf8f5;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, blockquote {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 500;
	letter-spacing: -0.5px;
	line-height: 1.1;
}

.eyebrow {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 500;
	color: rgba(255,255,255,0.75);
	margin-bottom: 24px;
}
.eyebrow.dark { color: #a8936f; }
.eyebrow.center, h2.center, p.center { text-align: center; }
.muted { color: #6b6b6b; }

/* Header */
.site-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 10;
	padding: 28px 0;
}
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.5px;
}
.brand span { color: #d4a84b; }
.site-header nav a {
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	margin-left: 32px;
	font-weight: 400;
	transition: color 0.2s;
}
.site-header nav a:hover { color: #d4a84b; }

/* Hero */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=2000&q=80');
	background-size: cover;
	background-position: center;
	animation: slowZoom 20s ease-out infinite alternate;
}
@keyframes slowZoom {
	from { transform: scale(1); }
	to { transform: scale(1.08); }
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.75) 100%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
}
.hero h1 {
	font-size: clamp(48px, 8vw, 92px);
	font-weight: 500;
	margin-bottom: 28px;
	color: #fff;
}
.hero h1 em {
	font-style: italic;
	font-weight: 400;
	color: #e8d5a8;
}
.hero .lede {
	font-size: 18px;
	max-width: 540px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 40px;
	font-weight: 300;
}
.btn-ghost {
	display: inline-block;
	padding: 16px 36px;
	border: 1px solid rgba(255,255,255,0.6);
	color: #fff;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.btn-ghost:hover {
	background: #fff;
	color: #1a1a1a;
	border-color: #fff;
}
.scroll-cue {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.6);
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	animation: bounce 2.5s infinite;
	z-index: 2;
}
@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
	50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* About */
.about {
	padding: 140px 0;
	background: #faf8f5;
}
.about-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 80px;
	align-items: center;
}
.about h2 {
	font-size: clamp(36px, 5vw, 56px);
	margin-bottom: 32px;
}
.about-text p {
	margin-bottom: 20px;
	color: #3d3d3d;
	font-size: 16px;
}
.about-stats {
	display: grid;
	gap: 32px;
	padding-left: 40px;
	border-left: 1px solid #e5dfd3;
}
.about-stats div strong {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 56px;
	font-weight: 500;
	color: #a8936f;
	line-height: 1;
	margin-bottom: 8px;
}
.about-stats div span {
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #6b6b6b;
}

/* Gallery */
.gallery {
	padding: 120px 0 140px;
	background: #fff;
}
.gallery h2 {
	font-size: clamp(36px, 5vw, 56px);
	margin-bottom: 16px;
}
.gallery > .container > .muted { margin-bottom: 64px; max-width: 540px; margin-left: auto; margin-right: auto; }
.grid-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 280px;
	gap: 16px;
	padding: 0 32px;
	max-width: 1400px;
	margin: 0 auto;
}
.photo {
	position: relative;
	overflow: hidden;
	background: #eee;
	cursor: pointer;
}
.photo.tall { grid-row: span 2; }
.photo.wide { grid-column: span 2; }
.photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.photo:hover img { transform: scale(1.05); }
.photo figcaption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 24px;
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: italic;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
}
.photo:hover figcaption { opacity: 1; transform: translateY(0); }

/* Quote */
.quote {
	padding: 120px 0;
	background: #1a1a1a;
	color: #fff;
	text-align: center;
}
.quote blockquote {
	font-size: clamp(28px, 4vw, 42px);
	font-style: italic;
	font-weight: 400;
	max-width: 820px;
	margin: 0 auto;
	color: #e8d5a8;
	line-height: 1.3;
}

/* Footer */
.site-footer {
	background: #141414;
	color: #bfbfbf;
	padding: 80px 0 32px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #2a2a2a;
}
.site-footer h3 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 16px;
}
.site-footer h4 {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d4a84b;
	margin-bottom: 20px;
	font-weight: 500;
}
.site-footer p { margin-bottom: 10px; font-size: 15px; }
.site-footer a { transition: color 0.2s; }
.site-footer a:hover { color: #d4a84b; }
.copyright {
	padding-top: 32px;
	font-size: 13px;
	color: #6b6b6b;
	text-align: center;
}

/* Responsive */
@media (max-width: 880px) {
	.container { padding: 0 20px; }
	.site-header nav a { margin-left: 18px; font-size: 13px; }
	.about { padding: 80px 0; }
	.about-grid { grid-template-columns: 1fr; gap: 48px; }
	.about-stats { padding-left: 0; border-left: none; border-top: 1px solid #e5dfd3; padding-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
	.about-stats div strong { font-size: 40px; }
	.gallery { padding: 80px 0 90px; }
	.grid-photos { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; padding: 0 20px; }
	.photo.wide { grid-column: span 2; }
	.quote { padding: 80px 0; }
	.site-footer { padding: 60px 0 24px; }
	.footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
}
@media (max-width: 520px) {
	.grid-photos { grid-template-columns: 1fr; grid-auto-rows: 260px; }
	.photo.wide, .photo.tall { grid-column: span 1; grid-row: span 1; }
	.site-header nav { display: none; }
}
