/*
Theme Name: Neil Noble
Theme URI: https://neilnoblestage.captustechnologies.com
Author: Captus Technologies
Author URI: https://captustechnologies.com
Description: Custom WordPress theme for the Neil M. Noble website.
Version: 1.0.0
Text Domain: neil-noble
*/

:root {
	--color-primary: #4fc7a5;
	--color-primary-dark: #315c57;
	--color-secondary: #7c8eb8;
	--color-background: #ffffff;
	--color-background-soft: #f4f7f8;
	--color-text: #1b1b1b;
	--color-text-muted: #5e6666;
	--container-width: 1280px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

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

.site-container {
	width: min(100% - 40px, var(--container-width));
	margin-inline: auto;
}

.site-header {
	background: #ffffff;
	border-bottom: 1px solid #e6eceb;
}

.site-header .site-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 30px;
}

.site-branding a {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.home-hero {
	padding: 100px 0;
	background: var(--color-background-soft);
}

.home-hero h1 {
	margin: 0 0 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(52px, 8vw, 110px);
	line-height: 0.95;
}

.home-hero p {
	margin: 0;
	color: var(--color-primary-dark);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer {
	padding: 30px 0;
	background: var(--color-primary-dark);
	color: #ffffff;
}

.site-footer p {
	margin: 0;
}

@media (max-width: 768px) {
	.site-header .site-container {
		min-height: 70px;
	}

	.primary-navigation {
		display: none;
	}

	.home-hero {
		padding: 70px 0;
	}
}
.hero-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0 90px;
	background: #f4f7f8;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
	align-items: center;
	gap: 70px;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	margin: 0;
	color: #222222;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(72px, 9vw, 132px);
	font-weight: 400;
	line-height: 0.82;
	letter-spacing: -0.055em;
}

.hero-line {
	width: 86px;
	height: 4px;
	margin: 32px 0 20px;
	background: var(--color-primary);
}

.hero-role {
	margin: 0 0 28px;
	color: var(--color-primary-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-role span {
	margin: 0 8px;
	color: var(--color-primary);
}

.hero-quote {
	max-width: 580px;
	margin: 0 0 34px;
	padding: 0;
	border: 0;
	color: #4f5858;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-style: italic;
	line-height: 1.65;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border: 2px solid var(--color-primary-dark);
	color: var(--color-primary-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-button:hover {
	background: var(--color-primary-dark);
	color: #ffffff;
}

.hero-image-column {
	position: relative;
	z-index: 2;
}

.hero-image-column::before {
	position: absolute;
	top: -70px;
	right: -140px;
	width: 430px;
	height: 430px;
	border-radius: 50%;
	background: var(--color-primary);
	content: "";
	opacity: 0.72;
}

.hero-image-column::after {
	position: absolute;
	right: -100px;
	bottom: -110px;
	width: 360px;
	height: 300px;
	background: var(--color-secondary);
	content: "";
	opacity: 0.75;
	transform: rotate(-18deg);
}

.hero-image-frame {
	position: relative;
	z-index: 2;
	max-width: 480px;
	margin-left: auto;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(37, 63, 59, 0.16);
}

.hero-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 560px;
	padding: 30px;
	background: linear-gradient(145deg, #dfe8e6, #b8cbc6);
	color: #4d615d;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.hero-image-caption {
	display: flex;
	flex-direction: column;
	padding: 22px 26px 24px;
	background: #ffffff;
}

.hero-image-caption strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 400;
}

.hero-image-caption span {
	margin-top: 4px;
	color: var(--color-text-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.hero-layout {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.hero-image-frame {
		margin: 0 auto;
	}

	.hero-image-column::before {
		right: -40px;
	}

	.hero-image-column::after {
		right: -20px;
	}
}

@media (max-width: 600px) {
	.hero-section {
		padding: 55px 0 70px;
	}

	.hero-layout {
		gap: 45px;
	}

	.hero-title {
		font-size: clamp(62px, 22vw, 88px);
	}

	.hero-quote {
		font-size: 18px;
	}

	.hero-image-placeholder {
		min-height: 430px;
	}
}
