:root {
	--charcoal: #1c1b1a;
	--charcoal-soft: #262524;
	--warm-gray: #f3f0ec;
	--warm-gray-dark: #e8e3dc;
	--ink: #262422;
	--muted: #6f6a63;
	--line: #ddd8d0;
	--white: #ffffff;
	--accent: #a9744f;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2, h3 {
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0 0 0.4em;
}

p { margin: 0 0 1em; color: var(--muted); }

/* ---- Header ---- */
#site-header {
	background: var(--charcoal);
	color: var(--white);
}
.header-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 20px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--white);
}
.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255,255,255,0.35);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.brand-text {
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.brand-thin { font-weight: 300; opacity: 0.85; }
#site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
#site-nav a {
	text-decoration: none;
	color: rgba(255,255,255,0.8);
	font-size: 0.92rem;
	letter-spacing: 0.01em;
}
#site-nav a:hover { color: var(--white); }
#site-nav a.nav-cta {
	background: var(--white);
	color: var(--charcoal);
	padding: 8px 18px;
	font-weight: 600;
}

/* ---- Hero ---- */
.hero {
	position: relative;
	background: var(--charcoal) url('/images/hero-home.jpg') center/cover no-repeat;
	color: var(--white);
	padding: 130px 32px 110px;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(100deg, rgba(15,14,13,0.62) 0%, rgba(15,14,13,0.42) 35%, rgba(15,14,13,0.1) 65%, rgba(15,14,13,0) 85%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1180px;
	margin: 0 auto;
}
.hero .eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--accent);
	margin: 0 0 14px;
	text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero h1 {
	font-size: 2.6rem;
	max-width: 640px;
	margin-bottom: 0.3em;
	text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero p {
	color: rgba(255,255,255,0.92);
	max-width: 520px;
	font-size: 1.1rem;
	text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.cta {
	display: inline-block;
	background: var(--white);
	color: var(--charcoal);
	text-decoration: none;
	font-weight: 600;
	padding: 13px 26px;
	margin-top: 8px;
	margin-right: 12px;
	letter-spacing: 0.01em;
}
.cta:hover { background: var(--warm-gray); }
.cta-secondary {
	background: transparent;
	color: var(--white);
	border: 1px solid rgba(255,255,255,0.5);
}
.cta-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ---- Sections ---- */
.section {
	max-width: 1180px;
	margin: 0 auto;
	padding: 80px 32px;
}
.section h2 {
	font-size: 1.7rem;
	margin-bottom: 0.5em;
}
.section-alt {
	background: var(--warm-gray);
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}
.section-alt > * {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 32px;
	padding-right: 32px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 36px;
	margin-top: 36px;
}
.feature h3 {
	font-size: 1.1rem;
}
.feature p {
	font-size: 0.96rem;
	margin: 0;
}

.packages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	margin-top: 36px;
}
.package {
	border: 1px solid var(--line);
	padding: 32px;
}
.package h3 {
	font-size: 1.2rem;
}
.package .cta {
	background: var(--charcoal);
	color: var(--white);
}
.package .cta:hover { background: var(--charcoal-soft); }

/* ---- Interior page hero (no photo) ---- */
.page-hero {
	background: var(--charcoal);
	color: var(--white);
	padding: 90px 32px 70px;
}
.page-hero-inner {
	max-width: 780px;
	margin: 0 auto;
}
.page-hero h1 {
	font-size: 2.1rem;
	margin-bottom: 0.35em;
}
.page-hero p {
	color: rgba(255,255,255,0.78);
	font-size: 1.05rem;
	margin: 0;
}

/* ---- Feature rows (Features page) ---- */
.feature-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	margin-bottom: 56px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-text h2 {
	font-size: 1.3rem;
}
.feature-row-text p {
	font-size: 0.98rem;
}

.cta-secondary-light {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line);
}
.cta-secondary-light:hover { background: var(--warm-gray-dark); }
.section-alt .cta-secondary-light {
	color: var(--white);
	border-color: rgba(255,255,255,0.4);
}
.section-alt .cta-secondary-light:hover { background: rgba(255,255,255,0.08); }

/* ---- Pricing detail ---- */
.packages-detailed .package {
	display: flex;
	flex-direction: column;
}
.package-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex-grow: 1;
}
.package-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.94rem;
	color: var(--ink);
}
.package-list li:last-child { border-bottom: none; }
.pricing-note {
	text-align: center;
	margin-top: 40px;
	font-size: 0.95rem;
}

/* ---- Contact form ---- */
.formbox {
	max-width: 560px;
	margin: 0 auto;
}
.form-row {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.form-row label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
	border: 1px solid var(--line);
	padding: 11px 12px;
	font-size: 1rem;
	font-family: inherit;
	background: var(--warm-gray);
}
.form-row textarea { resize: vertical; }
.formbox input[type="submit"] {
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
}

/* ---- Footer ---- */
#site-footer {
	background: var(--charcoal);
	color: rgba(255,255,255,0.7);
}
.footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
}
.footer-nav {
	display: flex;
	gap: 22px;
}
.footer-nav a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--white); }
.footer-meta {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.5);
}
.footer-meta a { color: rgba(255,255,255,0.75); }

@media (max-width: 720px) {
	#site-nav { gap: 16px; }
	.hero { padding: 90px 20px 70px; }
	.hero h1 { font-size: 2rem; }
	.section { padding: 56px 20px; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
}
