/* ===== RESET & BASE ===== */
*, ::before, ::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', Arial, sans-serif;
	color: #4a4a4a;
	background: #ffffff;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
}

/* ===== BRAND COLORS ===== */
/* Navy: #1e3a5f  Teal: #5dada6  Charcoal: #4a4a4a  Light gray: #fafafa  Coral: #e87060  White: #ffffff */
/* ===== NAV ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255,255,255,0.97);
	border-bottom: 1px solid #e8e8e8;
	padding: 0 40px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	color: #1e3a5f;
}

.nav-logo span {
	color: #5dada6;
	font-size: 11px;
	font-family: 'Inter', sans-serif;
	letter-spacing: 3px;
	display: block;
	font-weight: 500;
}

.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: #4a4a4a;
	transition: color .2s;
}

.nav-links a:hover {
	color: #5dada6;
}

.nav-cta {
	background: #e87060;
	color: #fff !important;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 13px;
	transition: background .2s;
}

.nav-cta:hover {
	background: #d4594a;
}

/* ===== HERO ===== */
.hero {
	padding: 140px 40px 80px;
	background: linear-gradient(170deg, #1e3a5f 0%, #1e3a5f 60%, #163050 100%);
	color: #ffffff;
	text-align: center;
}

.hero-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 4px;
	color: #5dada6;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.hero h1 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 52px;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero p {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
	max-width: 600px;
	margin: 0 auto 12px;
}

.hero .sub {
	font-size: 15px;
	color: #5dada6;
	font-weight: 500;
	margin-bottom: 36px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	background: #e87060;
	color: #fff;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	transition: background .2s;
	display: inline-block;
}

.btn-primary:hover {
	background: #d4594a;
}

.btn-secondary {
	border: 2px solid rgba(255,255,255,0.3);
	color: #fff;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	transition: all .2s;
	display: inline-block;
}

.btn-secondary:hover {
	border-color: #5dada6;
	color: #5dada6;
}

/* ===== ESTIMATE PREVIEW ===== */
.estimate-preview {
	max-width: 900px;
	margin: 50px auto 0;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 32px 40px;
}

.estimate-preview h3 {
	font-size: 12px;
	letter-spacing: 3px;
	color: #5dada6;
	margin-bottom: 20px;
	font-weight: 600;
}

.tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.tier {
	text-align: center;
}

.tier-name {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 4px;
}

.tier-price {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}

.estimate-meta {
	display: flex;
	justify-content: center;
	gap: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.estimate-meta div {
	text-align: center;
}

.estimate-meta .label {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	letter-spacing: 1px;
}

.estimate-meta .value {
	font-size: 18px;
	font-weight: 600;
	color: #5dada6;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
	background: #5dada6;
	padding: 14px 40px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #1e3a5f;
}

.proof-bar strong {
	font-weight: 700;
}

/* ===== SECTION HELPERS ===== */
.section {
	padding: 80px 40px;
}

.section-gray {
	background: #fafafa;
}

.section-navy {
	background: #1e3a5f;
	color: #ffffff;
}

.section-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #5dada6;
	text-transform: uppercase;
	margin-bottom: 12px;
	text-align: center;
}

.section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 16px;
	color: #1e3a5f;
}

.section-navy .section-title {
	color: #ffffff;
}

.section-subtitle {
	font-size: 16px;
	color: #6b7280;
	text-align: center;
	max-width: 650px;
	margin: 0 auto 48px;
}

.section-navy .section-subtitle {
	color: rgba(255,255,255,0.7);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}

/* ===== VALUE PROPS (3 cards) ===== */
.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.value-card {
	background: #fff;
	border-radius: 12px;
	padding: 36px 28px;
	border: 1px solid #e8e8e8;
	transition: box-shadow .2s;
}

.value-card:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.value-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: rgba(93,173,166,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
}

.value-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1e3a5f;
	margin-bottom: 12px;
}

.value-card p {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.65;
}

/* ===== OUR STORY ===== */
.story-content {
	max-width: 700px;
	margin: 0 auto;
}

.story-content p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255,255,255,0.85);
	margin-bottom: 20px;
}

.story-content .highlight {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: #5dada6;
	font-weight: 700;
	line-height: 1.5;
	font-style: italic;
	border-left: 3px solid #e87060;
	padding-left: 20px;
	margin: 32px 0;
}

.story-cta {
	text-align: center;
	margin-top: 40px;
}

/* ===== TIMELINE ===== */
.timeline {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.timeline-item {
	text-align: center;
	max-width: 200px;
}

.timeline-year {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 700;
	color: #e87060;
	margin-bottom: 6px;
}

.timeline-text {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	line-height: 1.5;
}

/* ===== NUMBERS BAR ===== */
.numbers-bar {
	background: #fafafa;
	padding: 48px 40px;
	display: flex;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
}

.number-item {
	text-align: center;
}

.number-value {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #1e3a5f;
}

.number-label {
	font-size: 13px;
	color: #6b7280;
	margin-top: 4px;
}

/* ===== CALCULATOR CTA ===== */
.calc-cta {
	text-align: center;
}

.calc-mockup {
	max-width: 600px;
	margin: 0 auto 40px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	padding: 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.calc-field {
	text-align: left;
}

.calc-field .label {
	font-size: 11px;
	color: #6b7280;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.calc-field .value {
	font-size: 18px;
	font-weight: 600;
	color: #1e3a5f;
}

.calc-field .value.teal {
	color: #5dada6;
}

.calc-field .value.coral {
	color: #e87060;
}

.calc-features {
	max-width: 600px;
	margin: 0 auto 32px;
	text-align: left;
	font-size: 15px;
	color: #4a4a4a;
	line-height: 2;
}

.calc-features li {
	list-style: none;
	padding-left: 24px;
	position: relative;
}

.calc-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #5dada6;
	font-weight: 700;
}

/* ===== VIDEO ===== */
.video-placeholder {
	max-width: 700px;
	margin: 0 auto;
	background: rgba(255,255,255,0.05);
	border: 2px dashed rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 80px 40px;
	text-align: center;
	color: rgba(255,255,255,0.5);
	font-size: 48px;
}

/* ===== FINANCING CARDS ===== */
.finance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.finance-card {
	background: #fff;
	border-radius: 12px;
	padding: 32px 24px;
	border: 1px solid #e8e8e8;
}

.finance-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.badge-coral {
	background: rgba(232,112,96,0.12);
	color: #e87060;
}

.badge-teal {
	background: rgba(93,173,166,0.12);
	color: #5dada6;
}

.finance-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1e3a5f;
	margin-bottom: 12px;
}

.finance-card p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.65;
}

/* ===== EMAIL CAPTURE ===== */
.email-section {
	background: linear-gradient(170deg, #1e3a5f, #163050);
	padding: 80px 40px;
	text-align: center;
	color: #fff;
}

.email-section .section-title {
	color: #fff;
}

.email-section p {
	color: rgba(255,255,255,0.7);
	max-width: 550px;
	margin: 0 auto 32px;
	font-size: 15px;
}

.email-form {
	display: flex;
	gap: 12px;
	justify-content: center;
	max-width: 480px;
	margin: 0 auto 12px;
	flex-wrap: wrap;
}

.email-form input {
	flex: 1;
	min-width: 240px;
	padding: 14px 18px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: #fff;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
}

.email-form input::placeholder {
	color: rgba(255,255,255,0.4);
}

.email-form button {
	background: #e87060;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: background .2s;
}

.email-form button:hover {
	background: #d4594a;
}

.email-note {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
	background: #0f1f33;
	padding: 60px 40px 32px;
	color: rgba(255,255,255,0.6);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.footer-brand .logo {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.footer-brand .logo span {
	color: #5dada6;
	font-size: 10px;
	font-family: 'Inter', sans-serif;
	letter-spacing: 3px;
	display: block;
	font-weight: 500;
}

.footer-brand p {
	font-size: 13px;
	line-height: 1.6;
}

.footer-col h4 {
	font-size: 12px;
	letter-spacing: 2px;
	color: #5dada6;
	margin-bottom: 16px;
	text-transform: uppercase;
	font-weight: 600;
}

.footer-col a {
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
	color: rgba(255,255,255,0.6);
	transition: color .2s;
}

.footer-col a:hover {
	color: #5dada6;
}

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 4px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all .2s;
}

.footer-social a:hover {
	border-color: #5dada6;
	color: #5dada6;
}

.footer-bottom {
	max-width: 1100px;
	margin: 40px auto 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}

.footer-bottom a {
	color: rgba(255,255,255,0.4);
	margin-left: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.nav {
		padding: 0 20px;
	}
	
	.nav-links {
		display: none;
	}
	
	.hero {
		padding: 120px 20px 60px;
	}
	
	.hero h1 {
		font-size: 32px;
	}
	
	.tier-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.estimate-meta {
		flex-direction: column;
		gap: 16px;
	}
	
	.section {
		padding: 60px 20px;
	}
	
	.value-grid, .finance-grid {
		grid-template-columns: 1fr;
	}
	
	.calc-mockup {
		grid-template-columns: 1fr;
	}
	
	.numbers-bar {
		gap: 32px;
		padding: 40px 20px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
	
	.timeline {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
}

@media (max-width: 768px) {
	footer.wp-block-template-part .wp-block-columns {
		flex-direction: column !important;
		flex-wrap: wrap !important;
	}
}

@media (min-width: 769px) {
	.entry-content .wp-block-group.is-layout-constrained > * {
		max-width: none !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.entry-content > div:not(.wp-block-group):not([class*="wp-block"]) {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.entry-content > section {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}