/* Zenvora — calm living, soft pastel palette */

:root {
	--cream: #fdf8f4;
	--cream-deep: #f5ebe3;
	--blush: #f0e4e8;
	--sage: #dce8e0;
	--sage-deep: #c5d9cc;
	--lavender: #e6e2f0;
	--sky: #ddeef5;
	--text: #3d3a45;
	--text-soft: #6b6570;
	--accent: #7a9b8e;
	--accent-dark: #5c7a6f;
	--white: #ffffff;
	--shadow: rgba(61, 58, 69, 0.08);
	--radius: 1rem;
	--radius-lg: 1.5rem;
	--font-sans: "Outfit", system-ui, sans-serif;
	--font-display: "Cormorant Garamond", Georgia, serif;
	--max: 72rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background: linear-gradient(165deg, var(--cream) 0%, var(--blush) 45%, var(--sage) 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 0.5rem 1rem;
	background: var(--accent-dark);
	color: var(--white);
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

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

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

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(253, 248, 244, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}

.brand-mark {
	flex-shrink: 0;
}

.brand-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
}

.nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.25rem 1.25rem;
	flex-wrap: wrap;
}

.nav a {
	color: var(--text-soft);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.35rem 0.5rem;
	border-radius: 0.5rem;
	transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
	color: var(--accent-dark);
	background: rgba(255, 255, 255, 0.5);
}

.nav a[aria-current="page"] {
	color: var(--accent-dark);
	background: var(--sage);
}

/* Hero */

.hero {
	position: relative;
	padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
	overflow: hidden;
}

.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 38rem;
}

.hero-blob {
	position: absolute;
	top: -20%;
	right: -10%;
	width: min(55vw, 28rem);
	height: min(55vw, 28rem);
	background: radial-gradient(circle at 30% 30%, var(--lavender), transparent 55%),
		radial-gradient(circle at 70% 60%, var(--sky), transparent 50%),
		var(--sage-deep);
	border-radius: 50%;
	opacity: 0.45;
	filter: blur(2px);
}

.eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	margin: 0 0 0.75rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 1rem;
	color: var(--text);
}

.hero-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--accent-dark);
}

.hero-lead {
	font-size: 1.125rem;
	color: var(--text-soft);
	margin: 0 0 1.75rem;
	max-width: 32rem;
}

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

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
	cursor: pointer;
}

.btn:active {
	transform: scale(0.98);
}

.btn-primary {
	background: var(--accent);
	color: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--accent-dark);
	box-shadow: 0 6px 24px rgba(92, 122, 111, 0.25);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.65);
	color: var(--text);
	border-color: rgba(122, 155, 142, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: var(--white);
	border-color: var(--accent);
}

/* Sections */

.section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
	text-align: center;
	max-width: 36rem;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 600;
	margin: 0 0 0.5rem;
}

.section-sub {
	margin: 0;
	color: var(--text-soft);
}

.pillar-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.pillar-card {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: 0 8px 32px var(--shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(61, 58, 69, 0.1);
}

.pillar-icon {
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blush), var(--lavender));
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.pillar-icon img {
	width: 48px;
	height: 48px;
}

.pillar-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
}

.pillar-card p {
	margin: 0;
	font-size: 0.98rem;
	color: var(--text-soft);
}

.quote-block {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.quote-inner {
	max-width: 40rem;
	margin-inline: auto;
}

.quote {
	margin: 0;
	padding: 2rem 2.25rem;
	background: rgba(255, 255, 255, 0.55);
	border-left: 4px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-style: italic;
	line-height: 1.45;
	color: var(--text);
}

.quote p {
	margin: 0;
}

.cta-band {
	background: linear-gradient(120deg, var(--sage) 0%, var(--lavender) 50%, var(--blush) 100%);
	border-radius: var(--radius-lg);
	margin: 0 1rem 3rem;
	max-width: calc(var(--max) + 2rem);
	margin-inline: auto;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-inner {
	text-align: center;
	padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}

.cta-title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 0.75rem;
}

.cta-text {
	margin: 0 auto 1.5rem;
	max-width: 28rem;
	color: var(--text-soft);
}

/* Page templates */

.page-hero {
	padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.page-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 600;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.page-lead {
	font-size: 1.125rem;
	color: var(--text-soft);
	max-width: 38rem;
	margin: 0;
}

.prose {
	padding-bottom: 4rem;
}

.prose-narrow {
	max-width: 40rem;
}

.prose-narrow p {
	margin: 0 0 1.25rem;
}

.prose-heading {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 0.75rem;
}

.prose-narrow .prose-heading:first-child {
	margin-top: 0;
}

.contact-section {
	padding-bottom: 4rem;
}

.contact-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.contact-card {
	background: rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 6px 24px var(--shadow);
}

.contact-card-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 0 0 1rem;
}

.contact-address {
	font-style: normal;
	line-height: 1.7;
	color: var(--text-soft);
}

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

/* Footer */

.site-footer {
	background: rgba(61, 58, 69, 0.06);
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	padding: 2.5rem 0 2rem;
	margin-top: auto;
}

.footer-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-logo {
	opacity: 0.9;
}

.footer-tagline {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-soft);
}

.footer-heading {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent);
	margin: 0 0 0.5rem;
}

.footer-address {
	font-style: normal;
	line-height: 1.7;
	color: var(--text-soft);
	font-size: 0.95rem;
}

.footer-link {
	color: var(--accent-dark);
	font-weight: 500;
	text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
	text-decoration: underline;
}

.footer-copy {
	margin: 1rem 0 0;
	font-size: 0.85rem;
	color: var(--text-soft);
}

@media (max-width: 640px) {
	.nav ul {
		gap: 0.5rem;
	}

	.cta-band {
		margin-inline: 0.5rem;
	}
}
