/* --- Base --- */
*, *::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: #fafaf7;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

h1, h2, h3, h4 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.1;
	color: #111;
}

.eyebrow {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #8a7a5c;
	margin-bottom: 20px;
}

/* --- Header --- */
.site-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 10;
	padding: 28px 0;
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
}
.brand span { font-style: italic; font-weight: 400; opacity: 0.85; }
.menu { display: flex; gap: 36px; }
.menu a {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255,255,255,0.85);
	letter-spacing: 0.05em;
	transition: color 0.2s;
}
.menu a:hover { color: #fff; }

/* --- Hero --- */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero-image {
	position: absolute; inset: 0;
	background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=2000&q=85');
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
	from { transform: scale(1.05); }
	to { transform: scale(1.15); }
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero .eyebrow { color: #e8d9b5; }
.hero h1 {
	font-size: clamp(44px, 7vw, 88px);
	color: #fff;
	margin-bottom: 24px;
	font-weight: 400;
}
.hero p {
	font-size: 17px;
	max-width: 540px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 40px;
	font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
	display: inline-flex;
	align-items: center;
	padding: 16px 32px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 2px;
	transition: all 0.25s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn-primary { background: #fff; color: #111; }
.btn-primary:hover { background: #e8d9b5; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* --- Sections --- */
section { padding: 120px 0; }

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 72px;
}
.section-head h2 {
	font-size: clamp(36px, 5vw, 56px);
	margin-bottom: 20px;
}
.section-head p {
	color: #666;
	font-size: 16px;
	font-weight: 300;
}

/* --- About --- */
.about { background: #fafaf7; }
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-text h2 {
	font-size: clamp(32px, 4.5vw, 52px);
	margin-bottom: 28px;
}
.about-text p {
	color: #555;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 18px;
}
.about-image {
	height: 560px;
	background-image: url('https://images.unsplash.com/photo-1534567110243-8875d64ca8ff?w=1200&q=85');
	background-size: cover;
	background-position: center;
	border-radius: 2px;
}

/* --- Gallery --- */
.gallery { background: #111; color: #fff; }
.gallery h2 { color: #fff; }
.gallery .section-head p { color: #aaa; }
.gallery .eyebrow { color: #e8d9b5; }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 280px;
	gap: 16px;
}
.g-item {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.4s ease;
}
.g-item::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s;
}
.g-item:hover::after { opacity: 1; }
.g-item figcaption {
	position: absolute;
	bottom: 20px; left: 24px;
	z-index: 2;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.3s;
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* --- Services --- */
.services { background: #fafaf7; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.service-card {
	padding: 48px 36px;
	background: #fff;
	border: 1px solid #ece7dc;
	border-radius: 2px;
	transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.service-card h3 {
	font-size: 26px;
	margin-bottom: 16px;
}
.service-card p {
	color: #666;
	font-weight: 300;
	font-size: 15px;
}

/* --- Footer --- */
.site-footer {
	background: #0f0f0f;
	color: #bbb;
	padding: 80px 0 30px;
	font-size: 14px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #222;
}
.brand-footer { color: #fff; font-size: 28px; display: inline-block; margin-bottom: 18px; }
.footer-tag { color: #888; font-weight: 300; line-height: 1.7; }
.site-footer h4 {
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.contact-list { list-style: none; }
.contact-list li {
	margin-bottom: 12px;
	color: #bbb;
	font-weight: 300;
}
.contact-list li span {
	display: block;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 2px;
}
.contact-list a { color: #ddd; transition: color 0.2s; }
.contact-list a:hover { color: #e8d9b5; }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	font-size: 12px;
	color: #666;
}
.footer-bottom a { color: #ddd; border-bottom: 1px solid #333; }

/* --- Responsive --- */
@media (max-width: 900px) {
	.menu { display: none; }
	section { padding: 80px 0; }
	.about-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-image { height: 380px; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
	.g-wide { grid-column: span 2; }
	.g-tall { grid-row: span 1; }
	.services-grid { grid-template-columns: 1fr; gap: 20px; }
	.footer-grid { grid-template-columns: 1fr; gap: 40px; }
	.footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 520px) {
	.container { padding: 0 20px; }
	.gallery-grid { grid-template-columns: 1fr; }
	.g-wide { grid-column: span 1; }
}
