/*
Theme Name: Sentinel Shell
Description: Minimal demo shell for the Sentinel Homes configurator — homepage design tokens, header, nav and footer wrapped around full-width house pages. Chunk 2 deliverable; grows into the production theme.
Author: CreativeQ
Version: 0.1.0
Text Domain: sentinel-shell
*/

:root {
	--white: #ffffff;
	--off-white: #fdfbf9;
	--cream: #f7f3ea;
	--warm-sand: #efe8d6;
	--charcoal: #424040;
	--mid-grey: rgba(66, 64, 64, .8);
	--sage: #7a917f;
	--slate-green: #637468;
	--terracotta: #7b4a39;
	--amber: #e8b639;
	--serif: "Playfair Display", Georgia, serif;
	--sans: "Montserrat", -apple-system, "Segoe UI", sans-serif;
	--maxw: 1600px;
	--global-padding: 53.33px;
	--shadow-sm: 0 1.11px 4.44px rgba(0, 0, 0, .15);
	--shadow-lg: 0 13.33px 53.33px rgba(0, 0, 0, .2);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--off-white);
	color: var(--charcoal);
	font-family: var(--sans);
	font-size: 17.78px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.shell-container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--global-padding);
}

/* ---------- Header / nav (homepage pattern, charcoal bar) ---------- */

.shell-nav {
	background: var(--charcoal);
}

.shell-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 22px var(--global-padding);
	max-width: var(--maxw);
	margin: 0 auto;
}

.shell-nav__logo { display: inline-flex; align-items: center; }
.shell-nav__logo img { height: 40px; width: auto; }

.shell-nav__links {
	display: flex;
	align-items: center;
	gap: 44.44px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shell-nav__links a {
	color: var(--off-white);
	font-family: var(--sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease;
}

.shell-nav__links a:hover { border-bottom-color: var(--off-white); }

.btn {
	display: inline-block;
	font-family: var(--sans);
	font-weight: 600;
	font-size: 13.33px;
	letter-spacing: 1.78px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 999px;
	transition: background .2s ease, color .2s ease;
}

.btn--outline-light {
	color: var(--off-white);
	border: 1px solid rgba(253, 251, 249, .6);
}

.btn--outline-light:hover { background: rgba(255, 255, 255, .12); }

@media (max-width: 960px) {
	.shell-nav__links { display: none; }
}

/* ---------- Page headings ---------- */

.shell-page-head {
	width: 100%;
	padding: 56px var(--global-padding) 8px;
	max-width: var(--maxw);
	margin: 0 auto;
}

.shell-page-head__eyebrow {
	font-family: var(--sans);
	font-weight: 600;
	font-size: 13.33px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--slate-green);
	margin: 0 0 10px;
}

.shell-page-head__title {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(40px, 4.1vw, 65.56px);
	letter-spacing: -1.11px;
	line-height: 1.08;
	margin: 0;
}

.shell-page-head__lede {
	color: var(--mid-grey);
	max-width: 640px;
	margin: 16px 0 0;
}

/* ---------- House page ---------- */

.shell-house {
	width: 100%;
	max-width: var(--maxw);
	margin: 28px auto 96px;
	padding: 0 var(--global-padding);
}

.shell-house .house-configurator {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

/* ---------- Generic content (index/archive fallback) ---------- */

.shell-content {
	width: 100%;
	max-width: 900px;
	margin: 40px auto 96px;
	padding: 0 var(--global-padding);
}

.shell-content h1, .shell-content h2 { font-family: var(--serif); font-weight: 400; }

/* ---------- Footer ---------- */

.shell-footer {
	background: var(--charcoal);
	color: var(--off-white);
	margin-top: auto;
}

.shell-footer__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 64px var(--global-padding) 48px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.shell-footer__brand {
	font-family: var(--serif);
	font-size: clamp(34px, 3.4vw, 54px);
	line-height: 1.1;
	margin: 0;
}

.shell-footer__meta {
	font-size: 13.33px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(253, 251, 249, .7);
}

body { min-height: 100vh; display: flex; flex-direction: column; }
