@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
	--page-bg: #e6b879;
	--header-bg: #FFFFFF;
	--footer-bg: #f3efe8;
	--text: #1f1f1f;
	--muted: #8c7a66;
	--brand-orange: #b86d08;
	--brand-green: #2f7d3a;
    --brand-green-dark:#998675;
	--card-max: 1040px;
	--radius: 14px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Nunito Sans', sans-serif;
	background: var(--page-bg);
	color: var(--text);
	line-height: 1.5;
}

a {
	color: inherit;
}

.container {
	width: min(var(--card-max), calc(100% - 2.5rem));
	margin: 0 auto;
}

.site-header {
	background: var(--page-bg);
	border-top: 10px solid var(--page-bg);
	padding: 0;
}

.brand-band {
	background: var(--header-bg);
	padding: 1.2rem 0 1rem;
}

.brand {
	text-align: center;
}

.brand img {
	width: min(410px, 84vw);
	height: auto;
	display: inline-block;
}

.tagline {
	margin: 0.22rem 0 0;
	font-family: 'Comfortaa', sans-serif;
	color: var(--brand-orange);
	font-size: 1.12rem;
}

.site-nav {
	margin-top: 15px;
}

.site-nav ul {
	margin: 0;
	padding: 0.38rem 0 0.72rem;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2.15rem;
	flex-wrap: wrap;
}

.site-nav a {
	text-decoration: none;
	color: var(--brand-green);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.0rem;
    font-weight: bold;
}

.site-nav a[aria-current='page'] {
	font-weight: bold;
    color: var(--brand-green-dark);
}

.content {
	padding: 2.1rem 0 2.8rem;
}

h1,
h2,
h3 {
	margin: 0 0 1rem;
	font-family: 'Comfortaa', sans-serif;
	color: var(--brand-orange);
	line-height: 1.25;
}

h1 {
	font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

h2 {
	font-size: clamp(1.2rem, 1.7vw, 1.45rem);
}

h3 {
	font-size: 1rem;
}

p {
	margin: 0 0 1rem;
}

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

.stack {
	display: grid;
	gap: 1.4rem;
}

.hero-image,
.content-image,
.map-image {
	width: 100%;
	border-radius: var(--radius);
	display: block;
}

.note-center {
	text-align: center;
	margin-top: 0.8rem;
}

.prices {
	width: min(640px, 100%);
	border-collapse: collapse;
	margin-bottom: 1.8rem;
}

.prices td {
	padding: 0.45rem 0;
	border-bottom: 1px dashed rgba(31, 31, 31, 0.18);
}

.prices td:nth-child(2),
.prices td:nth-child(3) {
	text-align: right;
	white-space: nowrap;
}

.contact-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: start;
}

.contact-card {
	background: rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	padding: 1.2rem;
}

.contact-card p {
	margin-bottom: 0.45rem;
}

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

.site-footer {
	background: var(--footer-bg);
	text-align: center;
	padding: 1.2rem 0 1.4rem;
}

.site-footer p {
	margin: 0.35rem 0;
	font-size: 0.95rem;
}

.copyright {
	font-size: 0.78rem;
}

@media (max-width: 900px) {
	.grid-2,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.container {
		width: min(var(--card-max), calc(100% - 1.5rem));
	}

	.site-nav ul {
		gap: 1rem 1.4rem;
	}

	.prices td {
		font-size: 0.95rem;
	}
}
