:root {
	--bg: #ffffff;
	--text: #122019;
	--muted: #29302c;
	--border: #d6ddd8;
	--card: #f7faf8;
	--brand: 	#567a61;
	--brand-dark: #44614c;
	--Header-Font: 'Playfair Display', 'Montserrat', sans-serif;
	--Body-Font: 'Playfair Display', 'Roboto', sans-serif;
	--container: 980px;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Base */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--Body-Font);
	line-height: 1.55;
	color: var(--text);
	background: var(--bg);
}

main {
	position: relative;
	z-index: 1;
	padding-top: 70px; /* Space for fixed header */
}

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

h1, h2{
	font-family: var(--Header-Font);
	font-weight: 700;
	font-size: 2.5rem;
}

h3{
	font-family: var(--Header-Font);
	font-weight: 700;
	font-size: 1.5rem;
}

a {
	color: var(--brand-dark);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--brand);
}

.container {
	width: min(var(--container), calc(100% - 2rem));
	margin-inline: auto;
}

.muted {
	color: var(--muted);
}

.note {
	margin-top: 1rem;
	color: var(--muted);
	font-size: 0.95rem;
}

/* Accessibility */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.6rem 0.8rem;
	border-radius: 10px;
	background: #ffffff;
	border: 2px solid var(--border);
	box-shadow: var(--shadow);
	z-index: 999;
}

/* Header */
.site-header {
	border-bottom: 1px solid var(--border);
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 0;
	gap: 1rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
}

.logo__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--brand);
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.nav {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav__link {
	text-decoration: none;
	color: var(--text);
	padding: 0.35rem 0.5rem;
	border-radius: 10px;
}

.nav__link:hover {
	background: var(--card);
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	margin-top: 3rem;
	padding: 2rem 0;
	background: var(--card);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.footer-contact {
	font-style: normal;
}

.footer-contact p {
	margin: 0.25rem 0;
}

/* Sections */
.section {
	padding: 3rem 0;
	position: relative;
	z-index: 1;
}

.scroll-section {
	scroll-margin-top: 90px; /* offsets sticky header when jumping to anchors */
}

.section--alt {
	background: var(--card);
}

.section__header {
	margin-bottom: 1.25rem;
}

.section__header h2 {
	margin: 0 0 0.25rem;
}

/* Hero */
.hero {
	padding: 3.5rem 0;
	background: linear-gradient(180deg, #f3faf6, #ffffff);
	border-bottom: 1px solid var(--border);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

.hero__content h1 {
	margin: 0 0 0.5rem;
	font-size: clamp(2rem, 5vw, 3rem);
	letter-spacing: -0.02em;
}

.lede {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 55ch;
}

.hero__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.button {
	display: inline-block;
	padding: 0.7rem 1rem;
	border-radius: 12px;
	background: var(--brand);
	color: white;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--brand);
}

.button:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: white;
}

.button--ghost {
	background: transparent;
	color: var(--brand-dark);
	border-color: var(--border);
}

.button--ghost:hover {
	background: var(--card);
	border-color: var(--border);
	color: var(--brand-dark);
}

.hero__image img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

/* Cards */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.cards--spaced {
	margin-top: 1rem;
}

.card {
	background: white;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.card:hover {
	float: right;
	transform: scale(1.05);
	transition: transform 0.3s ease-in-out;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--brand);
	color: var(--brand);
	background: var(--card);
	border-color: var(--brand);
	border-radius: 10px;
	padding: 1rem;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.card h3 {
	margin: 0 0 0.35rem;
}

.card p {
	margin: 0;
	color: var(--muted);
}

/* Gallery */
.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.gallery img {
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: white;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 1;
}

/* Simple content page layout */
.page {
	padding: 2.5rem 0 0;
}

.page h1 {
	margin: 0 0 0.75rem;
}

.prose {
	max-width: 70ch;
}

/* Forms (Netlify-compatible; no JS required) */
form {
	max-width: 680px;
}

label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

input,
textarea {
	width: 100%;
	padding: 0.7rem 0.8rem;
	border-radius: 12px;
	border: 1px solid var(--border);
	font: inherit;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

.form-row {
	margin: 0 0 1rem;
}

.form-hint {
	margin-top: 0.35rem;
	color: var(--muted);
	font-size: 0.95rem;
}

/* Responsive */
@media (min-width: 820px) {
	.hero__grid {
		grid-template-columns: 1.1fr 0.9fr;
	}

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

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

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}


