:root {
	color-scheme: light;
	font-family: 'DM Sans', system-ui, sans-serif;
	--color-bg: #f5f0e8;
	--color-text: #1a1a18;
	--color-muted: #7a7568;
	--color-accent: #c0522e;
	--color-border: #d4cfc4;
	--color-surface: #ece7db;
}

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

body {
	background: var(--color-bg);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.25rem 2rem;
	background: linear-gradient(var(--color-bg), transparent);
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__tag {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-muted);
	font-weight: 500;
}

/* Hero */
.hero {
	display: none;
}

.hero__image-wrap {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 6px;
	overflow: hidden;
}

.hero__image {
	width: 100%;
	height: 55vh;
	min-height: 320px;
	object-fit: cover;
	display: block;
	filter: saturate(0.85) contrast(1.05);
}

.hero__image-caption {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	background: rgba(26, 26, 24, 0.7);
	backdrop-filter: blur(8px);
	color: #f5f0e8;
	padding: 0.4rem 0.85rem;
	border-radius: 100px;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 500;
}

.hero__pin-icon {
	width: 12px;
	height: 12px;
}

/* Intro */
.intro {
	padding: 8rem 2rem 4rem;
	text-align: center;
}

.intro__title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(2.8rem, 8vw, 7rem);
	line-height: 1;
	font-weight: 400;
	letter-spacing: -0.025em;
	color: var(--color-text);
}

.intro__title-line {
	display: block;
}

.intro__divider {
	width: 60px;
	height: 2px;
	background: var(--color-accent);
	margin: 2rem auto;
}

.intro__sub {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--color-muted);
	font-weight: 500;
}

/* About */
.about {
	padding: 2rem 2rem 6rem;
	max-width: 1200px;
	margin: 0 auto;
}

.about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.about__heading {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 1.5rem;
}

.about__body {
	color: var(--color-muted);
	line-height: 1.75;
	font-size: 1rem;
	max-width: 480px;
	margin: 0 auto;
}

.about__image {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 6px;
	filter: saturate(0.8) contrast(1.05);
}

/* Contact */
.contact {
	background: var(--color-surface);
	padding: 5rem 2rem;
}

.contact__inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-muted);
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.contact__heading {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 400;
	margin-bottom: 2rem;
}

.contact__email {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	background: var(--color-accent);
	color: #fff;
	text-decoration: none;
	border-radius: 100px;
	font-size: 1rem;
	font-weight: 500;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact__email:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(192, 82, 46, 0.3);
}

.contact__email svg {
	width: 18px;
	height: 18px;
}

.contact__note {
	margin-top: 1.5rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

/* Footer */
.footer {
	padding: 2rem;
	border-top: 1px solid var(--color-border);
}

.footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__name {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.footer__location {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer__location svg {
	width: 14px;
	height: 14px;
}

/* Mobile */
@media (max-width: 768px) {
	.intro {
		padding: 6rem 1.5rem 2.5rem;
	}

	.about {
		padding: 1rem 1.5rem 4rem;
	}

	.about__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact {
		padding: 3.5rem 1.5rem;
	}

	.contact__email {
		font-size: 0.85rem;
		padding: 0.85rem 1.5rem;
	}

	.footer__inner {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
}
