:root {
	--bg: #f4efe8;
	--surface: rgba(255, 250, 245, 0.8);
	--surface-strong: #fffaf5;
	--ink: #1b1a18;
	--muted: #5a534b;
	--line: rgba(27, 26, 24, 0.12);
	--accent: #b84c2a;
	--accent-deep: #7f2f16;
	--accent-soft: #f2c9af;
	--shadow: 0 28px 60px rgba(73, 43, 29, 0.12);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 14px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Space Grotesk", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(184, 76, 42, 0.16), transparent 32%),
		radial-gradient(circle at 80% 20%, rgba(139, 102, 62, 0.18), transparent 24%),
		linear-gradient(180deg, #f9f2e8 0%, var(--bg) 50%, #efe7de 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(27, 26, 24, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 26, 24, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

a {
	color: inherit;
}

.site-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 28px 0 48px;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 22px;
	background: rgba(255, 250, 245, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px rgba(60, 35, 23, 0.08);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--accent), var(--accent-deep));
	color: #fff9f4;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.brand-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.brand-copy strong {
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-copy span {
	color: var(--muted);
	font-size: 0.92rem;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.site-nav a {
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	color: var(--muted);
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
	background: #fff8f1;
	color: var(--ink);
	transform: translateY(-1px);
}

main {
	display: grid;
	gap: 28px;
	padding-top: 28px;
}

.hero,
.credentials,
.pathways {
	position: relative;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(16px);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
	gap: 24px;
	padding: 52px;
}

.hero-with-image {
	align-items: start;
}

.hero-visual-stack {
	display: grid;
	gap: 18px;
}

.hero-image-card {
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
	border: 1px solid rgba(184, 76, 42, 0.14);
	background: rgba(255, 248, 241, 0.9);
	box-shadow: 0 18px 30px rgba(80, 48, 32, 0.12);
}

.hero-image-card img {
	display: block;
	width: 100%;
	height: 270px;
	object-fit: cover;
}

.hero-logo-card {
	display: grid;
	place-items: center;
}

.hero-logo-card img {
	width: min(100%, 280px);
	height: auto;
	object-fit: contain;
	padding: 26px 26px 0;
}

.hero-image-card figcaption {
	padding: 16px 18px 18px;
	color: var(--muted);
	line-height: 1.6;
}

.hero::after,
.credentials::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(184, 76, 42, 0.18), transparent 70%);
	pointer-events: none;
}

.hero::after {
	width: 380px;
	height: 380px;
	right: -120px;
	top: -100px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--accent-deep);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.hero h1,
.section-heading h2 {
	margin: 0;
	font-family: "Source Serif 4", Georgia, serif;
	font-weight: 600;
	line-height: 0.96;
}

.hero h1 {
	max-width: 12ch;
	font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero-text,
.credential-block p,
.card p,
.path-card strong,
.site-footer p,
.hero-panel p,
.rate-list dt {
	color: var(--muted);
	line-height: 1.7;
}

.hero-text {
	max-width: 58ch;
	margin: 24px 0 0;
	font-size: 1.04rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	background: linear-gradient(145deg, var(--accent), var(--accent-deep));
	color: #fff8f1;
	box-shadow: 0 16px 28px rgba(127, 47, 22, 0.24);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(27, 26, 24, 0.08);
}

.hero-panel {
	align-self: end;
	padding: 26px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 248, 241, 0.98), rgba(250, 238, 229, 0.9));
	border: 1px solid rgba(184, 76, 42, 0.12);
}

.panel-label {
	margin: 0 0 10px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.phone-link {
	display: inline-block;
	margin-bottom: 8px;
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	font-family: "Source Serif 4", Georgia, serif;
	line-height: 1;
	text-decoration: none;
}

.rate-list {
	display: grid;
	gap: 16px;
	margin: 24px 0 0;
}

.rate-list div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(27, 26, 24, 0.08);
}

.rate-list dt,
.rate-list dd {
	margin: 0;
}

.rate-list dd {
	font-weight: 700;
}

.highlights,
.credentials-grid,
.path-grid,
.service-grid,
.contact-grid,
.reading-grid,
.three-up-grid {
	display: grid;
	gap: 20px;
}

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

.card,
.credential-block,
.path-card {
	background: rgba(255, 250, 245, 0.78);
	border: 1px solid rgba(27, 26, 24, 0.08);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 26px rgba(80, 48, 32, 0.08);
}

.card {
	padding: 26px;
}

.card h2,
.credential-block h3 {
	margin: 0 0 12px;
	font-size: 1.08rem;
}

.credentials {
	padding: 36px;
}

.credentials::after {
	width: 280px;
	height: 280px;
	left: -80px;
	bottom: -120px;
}

.section-heading {
	display: grid;
	gap: 8px;
	margin-bottom: 22px;
}

.section-heading h2 {
	font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.credentials-grid {
	grid-template-columns: 1.15fr 1fr 1fr;
}

.credential-block {
	padding: 26px;
}

.accent-block {
	background: linear-gradient(180deg, rgba(184, 76, 42, 0.95), rgba(127, 47, 22, 0.94));
	color: #fff8f1;
}

.accent-block p {
	color: rgba(255, 248, 241, 0.88);
}

.lead {
	margin: 0 0 12px;
	font-size: 1.4rem;
	font-family: "Source Serif 4", Georgia, serif;
}

.credential-block ul {
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
	line-height: 1.8;
}

.pathways {
	padding: 36px;
}

.page-hero,
.content-panel {
	position: relative;
	overflow: hidden;
	padding: 36px;
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(16px);
}

.page-hero h1 {
	margin: 0;
	max-width: 13ch;
	font-family: "Source Serif 4", Georgia, serif;
	font-size: clamp(2.7rem, 6vw, 4.8rem);
	line-height: 0.98;
}

.page-hero-split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
	gap: 24px;
}

.hero-aside,
.stat-stack {
	display: grid;
	gap: 16px;
}

.stat-card,
.service-card,
.contact-card,
.reading-card {
	padding: 24px;
	background: rgba(255, 250, 245, 0.82);
	border: 1px solid rgba(27, 26, 24, 0.08);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 26px rgba(80, 48, 32, 0.08);
}

.stat-card span {
	display: block;
	margin-bottom: 10px;
	color: var(--accent-deep);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.stat-card strong {
	font-size: 1.2rem;
	line-height: 1.4;
}

.stat-card-strong {
	background: linear-gradient(145deg, var(--accent), var(--accent-deep));
	color: #fff8f1;
}

.stat-card-strong span {
	color: rgba(255, 248, 241, 0.82);
}

.compact-heading {
	margin-bottom: 18px;
}

.reading-grid {
	grid-template-columns: 1.2fr 0.8fr;
}

.reading-card h3,
.service-card h2,
.contact-card h2,
.timeline article h3 {
	margin: 0 0 12px;
}

.reading-card p,
.service-card p,
.contact-card p,
.timeline article p {
	margin: 0;
	color: var(--muted);
	line-height: 1.75;
}

.timeline {
	display: grid;
	gap: 18px;
}

.timeline article {
	position: relative;
	padding: 22px 22px 22px 28px;
	border-left: 3px solid rgba(184, 76, 42, 0.28);
	background: rgba(255, 250, 245, 0.78);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.timeline article span {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--accent-deep);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.three-up-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.featured-service,
.featured-contact-card {
	background: linear-gradient(180deg, rgba(255, 246, 238, 0.95), rgba(247, 229, 217, 0.9));
}

.compact-rate-list {
	margin-top: 18px;
}

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

.inner-shell main {
	gap: 24px;
}

.path-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 190px;
	padding: 24px;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.path-card:hover,
.path-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(184, 76, 42, 0.28);
	background: var(--surface-strong);
}

.path-card span {
	color: var(--accent-deep);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.path-card strong {
	font-size: 1.25rem;
	color: var(--ink);
	line-height: 1.35;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
	padding: 0 10px;
}

.site-footer strong {
	display: inline-block;
	margin-bottom: 6px;
}

.site-footer p {
	margin: 0;
}

@media (max-width: 980px) {
	.site-header,
	.hero,
	.highlights,
	.credentials-grid,
	.path-grid,
	.page-hero-split,
	.service-grid,
	.contact-grid,
	.reading-grid,
	.three-up-grid,
	.site-footer {
		grid-template-columns: 1fr;
	}

	.site-header,
	.site-footer {
		display: grid;
	}

	.site-nav {
		justify-content: flex-start;
	}

	.hero {
		padding: 34px 24px;
	}

	.credentials,
	.pathways,
	.page-hero,
	.content-panel {
		padding: 28px 24px;
	}
}

@media (max-width: 640px) {
	.site-shell {
		width: min(100% - 20px, 1180px);
		padding-top: 14px;
	}

	.site-header {
		padding: 16px;
		border-radius: 28px;
	}

	.brand {
		align-items: flex-start;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.hero-panel,
	.card,
	.credential-block,
	.path-card {
		padding: 20px;
	}

	.phone-link {
		font-size: 2rem;
	}
}
