/* Parkview MCP: shared stylesheet. No inline styles, no scripts, no third-party requests (see _headers CSP). */

/* Self-hosted variable fonts (latin subset), from @fontsource-variable 5.3.0. SIL OFL 1.1: see /fonts/OFL-*.txt */
@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("/fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "DM Sans";
	font-style: normal;
	font-weight: 100 1000;
	font-display: swap;
	src: url("/fonts/dm-sans-latin-wght-normal.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	/* Brand scale taken from parkviewpetcenter.com (Tailwind "parkview-*"). */
	--green: #9ebe4f; /* parkview-400, brand primary. Accents only: 2.11:1 on white, fails as text. */
	--green-50: #f5f8ec; /* parkview-50, footer background */
	--green-100: #e8f0d4; /* parkview-100, footer rule */
	--green-700: #4e6028; /* parkview-700, link text: 6.94:1 on white, 6.45:1 on --green-50 */
	--green-800: #404d24; /* parkview-800, link hover: 9.11:1 on white */

	/* Neutrals used by the site (Tailwind gray). */
	--ink: #111827; /* gray-900, headings: 17.74:1 on white */
	--text: #374151; /* gray-700, body text: 10.31:1 on white, 9.58:1 on --green-50 */
	--muted: #4b5563; /* gray-600, meta lines: 7.56:1 on white */
	--rule: #e5e7eb; /* gray-200 */
	--bg: #ffffff;

	--font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--measure: 720px;
	--gutter: 16px;

	color-scheme: light;
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	border-top: 6px solid var(--green);
}

img {
	max-width: 100%;
}

/* Single readable column with 16px side gutters. */
.wrap {
	width: 100%;
	max-width: calc(var(--measure) + 2 * var(--gutter));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* Header */
.site-header {
	border-bottom: 1px solid var(--rule);
}

.site-header .wrap {
	display: flex;
	align-items: center;
	padding-block: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--ink);
	text-decoration: none;
}

.brand:hover {
	color: var(--ink);
}

.brand img {
	display: block;
	height: 44px;
	width: auto;
}

.wordmark {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
	white-space: nowrap;
	padding-left: 14px;
	border-left: 2px solid var(--green);
}

/* Content */
main {
	flex: 1;
	padding-block: 48px 64px;
}

h1,
h2 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -0.015em;
}

h1 {
	font-size: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
	font-weight: 700;
	margin: 0 0 0.75rem;
}

h2 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 2.25rem 0 0.5rem;
}

p {
	margin: 0 0 1rem;
}

.lead {
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--ink);
	margin-bottom: 1.25rem;
}

.meta {
	color: var(--muted);
	font-size: 0.9375rem;
	margin-bottom: 1.75rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--rule);
}

.back {
	margin-top: 2rem;
}

/* Links: dark brand green for text contrast; brand primary for the focus ring. */
a {
	color: var(--green-700);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	overflow-wrap: anywhere;
}

a:hover {
	color: var(--green-800);
	text-decoration-thickness: 2px;
}

/* Brand-green band inside a dark-green outline, so the ring meets 3:1 against white (6.94:1). */
a:focus-visible {
	outline: 3px solid var(--green-700);
	outline-offset: 2px;
	border-radius: 2px;
	box-shadow: 0 0 0 5px var(--green);
}

/* Inline link lists separated by middle dots. */
.inline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.25rem;
}

.inline-list li:not(:last-child)::after {
	content: "\00B7";
	content: "\00B7" / "";
	margin-inline: 0.6em;
	color: var(--muted);
}

/* Footer */
.site-footer {
	background: var(--green-50);
	border-top: 1px solid var(--green-100);
	padding-block: 24px 28px;
	font-size: 0.9375rem;
	color: var(--text);
}

.site-footer p {
	margin: 0 0 0.5rem;
}
