:root {
	--void: #101512;
	--forest: #1a3c34;
	--forest-soft: #2a5449;
	--mist: #e7e1d6;
	--mist-2: #d4cdc0;
	--paper: #f2ede4;
	--ink: #171a18;
	--muted: #5c645f;
	--line: rgba(16, 21, 18, 0.14);
	--gold: #b7a078;
	--max: 1180px;
	--nav: 4.5rem;
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Figtree", sans-serif;
	font-weight: 400;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

/* Header */
.top {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	height: var(--nav);
	display: flex;
	align-items: center;
	background: transparent;
	transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.top.is-solid {
	background: rgba(242, 237, 228, 0.94);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--line);
}

.top__inner {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--mist);
	transition: color 0.3s;
}

.top.is-solid .logo { color: var(--forest); }

.logo__mark {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
}

.logo__word {
	font-family: "Newsreader", serif;
	font-size: 1.35rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1;
}

.logo__word small {
	display: block;
	font-family: "Figtree", sans-serif;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.7;
	margin-top: 0.28rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.nav a {
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(231, 225, 214, 0.82);
	transition: color 0.2s;
}

.top.is-solid .nav a { color: var(--muted); }
.nav a:hover,
.top.is-solid .nav a:hover { color: var(--forest); }

.nav__cta {
	padding: 0.5rem 0.9rem;
	border: 1px solid rgba(231, 225, 214, 0.4);
	border-radius: 999px;
}

.top.is-solid .nav__cta {
	border-color: var(--forest);
	background: var(--forest);
	color: var(--mist) !important;
}

.nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	width: 42px;
	height: 42px;
	cursor: pointer;
	padding: 0;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--mist);
	transition: background 0.2s;
}

.top.is-solid .nav-toggle span { background: var(--ink); }

/* Hero */
.hero {
	min-height: 100vh;
	min-height: 100dvh;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	background: var(--void);
	color: var(--mist);
	overflow: hidden;
}

.hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: calc(var(--nav) + 2rem) 2rem 3.5rem;
	padding-left: max(2rem, calc((100vw - var(--max)) / 2 + 1rem));
	position: relative;
	z-index: 1;
}

.hero__kicker {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 1.25rem;
	opacity: 0;
	animation: up 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
	font-family: "Newsreader", serif;
	font-weight: 500;
	font-size: clamp(2.8rem, 6.5vw, 5.4rem);
	line-height: 0.95;
	letter-spacing: -0.035em;
	margin: 0 0 1.25rem;
	max-width: 9.5ch;
	opacity: 0;
	animation: up 0.9s var(--ease) 0.2s forwards;
}

.hero__lead {
	margin: 0 0 2rem;
	max-width: 28rem;
	font-size: 1.08rem;
	color: rgba(231, 225, 214, 0.78);
	opacity: 0;
	animation: up 0.9s var(--ease) 0.35s forwards;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	opacity: 0;
	animation: up 0.9s var(--ease) 0.5s forwards;
}

.hero__visual {
	position: relative;
	min-height: 60vh;
}

.hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, var(--void) 0%, transparent 28%),
		linear-gradient(0deg, rgba(16, 21, 18, 0.35), transparent 40%);
	pointer-events: none;
}

.hero__chips {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	z-index: 2;
	font-family: "Newsreader", serif;
	font-style: italic;
	font-size: 1.05rem;
	color: rgba(231, 225, 214, 0.7);
	opacity: 0;
	animation: up 1s var(--ease) 0.7s forwards;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font: inherit;
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
	transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn--fill {
	background: var(--gold);
	color: var(--void);
}

.btn--fill:hover { background: #cbb28a; }

.btn--line {
	border-color: rgba(231, 225, 214, 0.4);
	color: var(--mist);
}

.btn--line:hover { border-color: var(--mist); }

.btn--dark {
	background: var(--forest);
	color: var(--mist);
}

.btn--dark:hover { background: var(--forest-soft); }

/* Stats */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border-block: 1px solid var(--line);
}

.stat {
	background: var(--paper);
	padding: 2rem 1.25rem;
	text-align: center;
}

.stat strong {
	display: block;
	font-family: "Newsreader", serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 500;
	line-height: 1;
	color: var(--forest);
	margin-bottom: 0.4rem;
}

.stat span {
	font-size: 0.88rem;
	color: var(--muted);
}

/* Sections */
.section {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--forest {
	background: var(--forest);
	color: var(--mist);
}

.section--forest .muted { color: rgba(231, 225, 214, 0.72); }

.eyebrow {
	margin: 0 0 0.7rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.section--light .eyebrow { color: var(--forest-soft); }

.title {
	font-family: "Newsreader", serif;
	font-weight: 500;
	font-size: clamp(1.9rem, 4vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 0.85rem;
}

.lead {
	margin: 0;
	max-width: 36rem;
	color: var(--muted);
	font-size: 1.05rem;
}

.section--forest .lead { color: rgba(231, 225, 214, 0.72); }

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: end;
	margin-bottom: 3rem;
}

.principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.principle {
	padding: 1.4rem 1.3rem;
	background: rgba(231, 225, 214, 0.06);
	border-top: 2px solid var(--gold);
}

.principle h3 {
	font-family: "Newsreader", serif;
	font-size: 1.35rem;
	font-weight: 500;
	margin: 0 0 0.55rem;
}

.principle p {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(231, 225, 214, 0.72);
}

/* Team */
.team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3.5rem;
	text-align: center;
}

.member {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.member img {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top center;
	background: var(--mist-2);
}

.member h3 {
	font-family: "Newsreader", serif;
	font-size: 1.25rem;
	font-weight: 500;
	margin: 1rem 0 0.25rem;
	text-align: center;
	width: 100%;
}

.member .role {
	margin: 0 0 0.7rem;
	font-size: 0.84rem;
	color: var(--gold);
	text-align: center;
	width: 100%;
}

.member p:not(.role) {
	margin: 0;
	max-width: 30ch;
	font-size: 0.92rem;
	color: rgba(231, 225, 214, 0.7);
	text-align: center;
}

/* Quotes */
.quotes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-top: 2.25rem;
}

.quote {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--line);
}

.quote p {
	font-family: "Newsreader", serif;
	font-size: 1.2rem;
	line-height: 1.35;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}

.quote cite {
	font-style: normal;
	font-size: 0.85rem;
	color: var(--muted);
}

.note {
	margin: 1.75rem 0 0;
	text-align: center;
	font-size: 0.8rem;
	color: var(--muted);
}

/* Places */
.places {
	display: grid;
	gap: 1rem;
	margin-top: 2.25rem;
}

.place {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0;
	background: #fff;
	border: 1px solid var(--line);
	overflow: hidden;
	min-height: 220px;
}

.place:nth-child(even) .place__media { order: 2; }

.place__media {
	min-height: 220px;
	overflow: hidden;
}

.place__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.place:hover .place__media img { transform: scale(1.04); }

.place__body {
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.place__body strong {
	font-family: "Newsreader", serif;
	font-size: 1.4rem;
	font-weight: 500;
	display: block;
	margin-bottom: 0.35rem;
}

.place__body span {
	color: var(--muted);
	font-size: 0.95rem;
}

/* News */
.news {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	align-items: start;
	margin-top: 2rem;
}

.fb {
	background: #fff;
	border: 1px solid var(--line);
	padding: 0.75rem;
	display: flex;
	justify-content: center;
}

.fb iframe {
	border: 0;
	width: 100%;
	max-width: 500px;
	height: 480px;
}

/* Contact */
.contact-block {
	margin-top: 2rem;
	max-width: 28rem;
}

.contact-block li {
	margin-bottom: 0.45rem;
	font-size: 1.05rem;
	color: var(--ink);
}

.contact-block a {
	color: var(--forest);
	border-bottom: 1px solid transparent;
}

.contact-block a:hover { border-bottom-color: var(--forest); }

.contact-block__social span { color: var(--muted); }

.map {
	margin-top: 2rem;
	border: 1px solid var(--line);
	overflow: hidden;
	line-height: 0;
	background: var(--mist-2);
}

.map iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
	overflow: hidden;
}

/* Footer */
.foot {
	background: var(--void);
	color: rgba(231, 225, 214, 0.7);
	padding: 2rem 0;
	font-size: 0.88rem;
}

.foot__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.foot nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
}

.foot a:hover { color: var(--mist); }

/* Motion */
@keyframes up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 960px) {
	.nav-toggle { display: block; }

	.nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: var(--nav);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.5rem 1rem 1rem;
		background: var(--paper);
		box-shadow: 0 12px 28px rgba(0,0,0,0.1);
	}

	.nav.open { display: flex; }

	.nav a {
		color: var(--ink) !important;
		padding: 0.85rem 0;
		border-bottom: 1px solid var(--line);
	}

	.nav__cta {
		margin-top: 0.6rem;
		text-align: center;
		background: var(--forest);
		color: var(--mist) !important;
		border-color: var(--forest);
	}

	.logo { color: var(--forest); }
	.top:not(.is-solid) .logo { color: var(--mist); }
	.top:not(.is-solid) .nav-toggle span { background: var(--mist); }

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero__copy {
		padding: calc(var(--nav) + 2rem) 1.25rem 2.5rem;
		order: 2;
	}

	.hero__visual {
		min-height: 48vh;
		order: 1;
	}

	.hero__visual::after {
		background: linear-gradient(0deg, var(--void) 0%, transparent 45%);
	}

	.hero__chips { display: none; }

	.stats,
	.principles,
	.team,
	.quotes,
	.split,
	.news {
		grid-template-columns: 1fr;
	}

	.place,
	.place:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.place:nth-child(even) .place__media { order: 0; }

	.place__media { min-height: 180px; }

	.map iframe { height: 280px; }
}

@media (max-width: 600px) {
	.wrap, .top__inner { width: min(100% - 1.25rem, var(--max)); }
	.logo__word { font-size: 1.15rem; }
	.logo__mark { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation: none !important;
		transition: none !important;
	}
	.hero__kicker, .hero h1, .hero__lead, .hero__actions, .hero__chips,
	.reveal { opacity: 1; transform: none; }
}
