* { box-sizing: border-box; }

:root {
	--black:      #0E0D0C;
	--charcoal:   #1C1A18;
	--gold:       #C9A84C;
	--gold-light: #E2C97E;
	--cream:      #FAF6EF;
	--warm-gray:  #7A746C;
	--light-gray: #E8E3DC;
}

/* ─── Base ──────────────────────────────────────────────────────────────── */

body {
	margin: 0;
	background: var(--cream);
	color: var(--charcoal);
	font-family:
		ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
		Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

a { color: inherit; text-decoration-thickness: from-font; }

img { max-width: 100%; display: block; }

h1, h2, h3 {
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */

nav.site-nav {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 10;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 1.5em 2.5em;
}

nav.site-nav a.brand {
	text-decoration: none;
}

nav.site-nav a.brand img {
	height: 2.5rem;
	width: auto;
	filter: invert(1);
	mix-blend-mode: screen;
}

nav.site-nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 2em;
}

nav.site-nav ul a {
	color: rgba(255,255,255,.8);
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: color .15s;
}

nav.site-nav ul a:hover { color: var(--gold-light); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: var(--black);
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: .55;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(14,13,12,.3) 0%,
		rgba(14,13,12,.5) 60%,
		rgba(14,13,12,.85) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 2em 1.5em;
	max-width: 48em;
}

.hero-logo {
	width: min(220px, 55%);
	height: auto;
	margin: 0 auto 1.5em;
	filter: invert(1);
	mix-blend-mode: screen;
}

.eyebrow {
	display: block;
	color: var(--gold-light);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 1em;
}

.hero-content h1 {
	color: #fff;
	margin-bottom: .5em;
}

.hero-content .tagline {
	font-size: 1.15rem;
	color: rgba(255,255,255,.75);
	margin-bottom: 2em;
}

.hero-divider {
	width: 3em;
	height: 1px;
	background: var(--gold);
	margin: 0 auto 1.5em;
}

/* ─── CTA ───────────────────────────────────────────────────────────────── */

.cta {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	font-size: .9rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .9em 2.5em;
	border-radius: 2px;
	transition: background .2s, color .2s;
}

.cta-primary {
	background: var(--gold);
	color: var(--black);
}

.cta-primary:hover { background: var(--gold-light); }

.cta-outline {
	border: 1px solid rgba(255,255,255,.5);
	color: #fff;
	margin-left: 1em;
}

.cta-outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,.1);
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}

/* ─── Section wrapper ───────────────────────────────────────────────────── */

.section {
	padding: 5em 2em;
	max-width: 80em;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 3em;
}

.section-header h2 { margin-bottom: .4em; }

.section-header p {
	color: var(--warm-gray);
	max-width: 36em;
	margin: 0 auto;
}

/* ─── Services ──────────────────────────────────────────────────────────── */

.services {
	background: var(--black);
	color: #fff;
}

.services .section { max-width: 80em; }

.services .section-header h2,
.services .section-header .eyebrow { color: #fff; }

.services .section-header p { color: rgba(255,255,255,.6); }

.services-grid {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16em, 1fr));
	gap: 1px;
	background: rgba(255,255,255,.1);
}

.services-grid li {
	background: var(--charcoal);
	padding: 2.5em 2em;
}

.service-icon {
	font-size: 1.75rem;
	margin-bottom: .75em;
}

.services-grid h3 {
	color: var(--gold-light);
	font-size: 1rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: .5em;
}

.services-grid p {
	color: rgba(255,255,255,.6);
	font-size: .95rem;
	margin: 0;
}

/* ─── Instagram ─────────────────────────────────────────────────────────── */

.instagram { background: #fff; }

.instagram-grid {
	list-style: none;
	padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16em, 1fr));
	gap: 4px;
}

.instagram-grid li { aspect-ratio: 1; overflow: hidden; }

.instagram-grid a {
	display: block;
	width: 100%; height: 100%;
	position: relative;
}

.instagram-grid img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease, opacity .3s ease;
}

.instagram-grid a:hover img {
	transform: scale(1.04);
	opacity: .85;
}

.instagram .section-header a {
	color: var(--charcoal);
	text-decoration: none;
}

.instagram .section-header a:hover { color: var(--gold); }

/* ─── Contact strip ─────────────────────────────────────────────────────── */

.contact-strip {
	background: var(--gold);
	text-align: center;
	padding: 4em 2em;
}

.contact-strip h2 {
	color: var(--black);
	margin-bottom: .4em;
}

.contact-strip p {
	color: rgba(14,13,12,.7);
	margin-bottom: 1.5em;
}

.contact-strip .cta {
	background: var(--black);
	color: #fff;
	border: none;
	cursor: pointer;
}

.contact-strip .cta:hover { background: var(--charcoal); }

.contact-strip form {
	max-width: 28em;
	margin: 0 auto;
	text-align: left;
}

.contact-strip input:not([type="submit"]),
.contact-strip textarea {
	display: block;
	width: 100%;
	margin: 0 0 1em;
	padding: .75em 1em;
	font: inherit;
	border: 1px solid rgba(14,13,12,.2);
	border-radius: 2px;
	background: rgba(255,255,255,.6);
	transition: border-color .2s, box-shadow .2s;
}

.contact-strip textarea {
	min-height: 8em;
	resize: vertical;
}

.contact-strip input:focus,
.contact-strip textarea:focus {
	outline: none;
	border-color: var(--black);
	box-shadow: 0 0 0 3px rgba(14,13,12,.15);
}

/* ─── Message pages (thank-you / error) ─────────────────────────────────── */

.message-page {
	text-align: center;
	max-width: 36em;
}

.message-page p {
	color: var(--warm-gray);
	margin-bottom: 1.5em;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */

footer {
	background: var(--black);
	color: rgba(255,255,255,.5);
	padding: 3em 2.5em 2em;
	display: flex;
	flex-wrap: wrap;
	gap: 2em 4em;
	justify-content: space-between;
	align-items: flex-start;
}

footer .brand {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	margin-bottom: .5em;
}

footer p { margin: 0 0 .3em; font-size: .9rem; }

footer a {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .15s;
}

footer a:hover { color: var(--gold-light); }

footer .copyright {
	width: 100%;
	padding-top: 2em;
	border-top: 1px solid rgba(255,255,255,.08);
	font-size: .8rem;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 700px) {
	nav.site-nav { padding: 1.25em 1.25em; }
	nav.site-nav ul { display: none; }

	.hero { min-height: 100svh; }

	.section { padding: 3.5em 1.25em; }

	.instagram-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	footer { padding: 2.5em 1.25em; }
}
