/* =========================================
   1. ROOT / GLOBAL
========================================= */
:root {
	--green: #304f4f;
	--green-deep: #263f3f;
	--gold: #e09543;
	--rust: #9b3e28;
	--cream: #f7f2ea;
	--paper: #f8f2e8;
	--ink: #22302d;
	--muted: #66706c;
	--line: rgba(34, 48, 45, 0.14);
	--header-h: 88px;
	--max: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: "Montserrat", "Gotham A", "Gotham B", Arial, sans-serif;
	line-height: 1.45;
}

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

img,
video,
iframe {
	max-width: 100%;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", "Gotham A", "Gotham B", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

.container {
	width: min(calc(100% - 4.5rem), var(--max));
	margin: 0 auto;
}

/* ---------- Global Mobile ---------- */
@media (max-width: 1080px) {
	.container {
		width: min(calc(100% - 3rem), var(--max));
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 4rem), var(--max));
	}
}


/* =========================================
   2. TOPBAR
========================================= */
.topbar {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 30;
	color: #fff;
}

.topbar-inner {
	width: min(calc(100% - 4.5rem), var(--max));
	margin: 0 auto;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar-inner a {
	font-weight: 700;
}

.topbar-text {
	min-width: 0;
}

/* ---------- Topbar Mobile ---------- */
@media (max-width: 768px) {
	.topbar-inner {
		width: min(calc(100% - 4rem), var(--max));
		justify-content: flex-end;
	}

	.topbar-text {
		display: none;
	}

	.topbar-inner a {
		background: #cd8335;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 34px;
		padding: 0 1rem;
		font-size: 0.85rem;
	}
}


/* =========================================
   3. HEADER / NAV / LOGO
========================================= */
.site-header {
	position: fixed;
	top: 48px;
	left: 0;
	right: 0;
	z-index: 40;
	background: transparent;
	transition: background 0.25s ease, top 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	top: 0;
	background: rgba(38, 63, 63, 0.94);
	box-shadow: 0 10px 28px rgba(16, 20, 20, 0.18);
}

.site-header-inner {
	width: min(calc(100% - 4.5rem), var(--max));
	margin: 0 auto;
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	flex-shrink: 0;
}

.logo-mark {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	font-weight: 700;
	flex-shrink: 0;
}

.logo-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.logo-name {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.1;
}

.logo small {
	display: block;
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.2;
}

nav ul {
	display: flex;
	align-items: center;
	gap: 1.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

nav a {
	color: #fff;
	font-size: 0.97rem;
	letter-spacing: 0.02em;
}

.btn,
.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 1.4rem;
	font-weight: 700;
	transition: 0.2s ease;
}

.btn {
	background: var(--gold);
	color: #fff;
}

.btn:hover {
	background: #cd8335;
}

.btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	background: transparent;
}

/* ---------- Header Mobile ---------- */
@media (max-width: 1080px) {
	.site-header-inner {
		width: min(calc(100% - 3rem), var(--max));
	}

	nav ul {
		gap: 1rem;
	}

	nav a {
		font-size: 0.92rem;
	}
}

@media (max-width: 860px) {
	.site-header-inner {
		width: min(calc(100% - 4rem), var(--max));
		gap: 0.75rem;
	}

	.logo {
		gap: 0.75rem;
	}

	.logo-mark {
		width: 48px;
		height: 48px;
	}

	.logo-name {
		font-size: 0.92rem;
	}

	.logo small {
		font-size: 0.72rem;
	}

	nav {
		display: block;
	}

	nav ul {
		gap: 0.7rem 0.9rem;
	}
}

@media (max-width: 640px) {
	.site-header-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1rem 0;
		min-height: auto;
	}

	.logo {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		text-align: left;
	}

	.logo-text {
		align-items: flex-start;
		text-align: left;
	}

	nav {
		display: block;
		width: 100%;
	}

	nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0.6rem 0.9rem;
	}

	nav li {
		flex: 0 0 auto;
	}

	nav a {
		font-size: 0.88rem;
	}
}

/* Desktop defaults */
.desktop-nav {
	display: block;
}

.menu-toggle,
.mobile-menu {
	display: none;
}

/* Mobile header */
@media (max-width: 860px) {
	.site-header-inner {
		width: min(calc(100% - 2rem), var(--max));
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		min-height: 72px;
	}

	.logo {
		flex-direction: row;
		align-items: center;
		gap: 0.75rem;
		text-align: left;
		max-width: calc(100% - 64px);
	}

	.logo-text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		min-width: 0;
	}

	.logo-name {
		font-size: 0.92rem;
		line-height: 1.1;
	}

	.logo small {
		font-size: 0.7rem;
		line-height: 1.2;
	}

	.desktop-nav {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.22);
		background: rgba(255, 255, 255, 0.08);
		cursor: pointer;
		flex-shrink: 0;
	}

	.menu-toggle span {
		display: block;
		width: 20px;
		height: 2px;
		background: #fff;
		margin: 0 auto;
	}

	.mobile-menu {
		display: none;
		background: rgba(38, 63, 63, 0.98);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding: 1rem;
	}

	.mobile-menu.is-open {
		display: block;
	}

	.mobile-nav ul {
		display: flex;
		flex-direction: column;
		gap: 0.85rem;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-nav a {
		display: block;
		color: #fff;
		font-size: 1rem;
		padding: 0.25rem 0;
	}

	.mobile-nav .btn {
		display: inline-flex;
		width: 100%;
		justify-content: center;
		margin-top: 0.5rem;
		background: #cd8335;
		align-items: center;
		justify-content: center;
		min-height: 34px;
		padding: 0 1rem;
		font-size: 0.85rem;
	}
}


/* =========================================
   4. HERO
========================================= */
.hero {
	position: relative;
	min-height: 680px;
	display: flex;
	align-items: end;
	overflow: hidden;
	background: #111;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(18, 24, 23, 0.76) 0%,
		rgba(18, 24, 23, 0.48) 42%,
		rgba(18, 24, 23, 0.18) 100%
	);
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.42;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 4.5rem), var(--max));
	margin: 0 auto;
	padding: 14rem 0 7.5rem;
	color: #fff;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.26);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	background: rgba(255, 255, 255, 0.08);
}

h1 {
	font-size: clamp(3.5rem, 4vw, 6rem);
	line-height: 0.96;
	letter-spacing: -0.03em;
	max-width: 840px;
	margin-bottom: 1rem;
}

.hero p {
	max-width: 720px;
	font-size: 1.14rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.7rem;
}

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

/* ---------- Hero Mobile ---------- */
@media (max-width: 860px) {
	.hero {
		min-height: 760px;
	}

	.hero-content {
		width: min(calc(100% - 4rem), var(--max));
		padding: 12rem 0 4rem;
	}
}

@media (max-width: 640px) {
	.hero-content {
		padding: 11.5rem 0 3rem;
	}

	h1 {
		font-size: 3rem;
	}
}


/* =========================================
   5. FOUR-PANEL LINKS UNDER HERO
========================================= */
.full-width-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

.link-panel {
	position: relative;
	min-height: 240px;
	padding: 2rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: end;
	overflow: hidden;
}

.link-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
}

.link-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(16, 20, 20, 0.14) 0%,
		rgba(16, 20, 20, 0.66) 100%
	);
}

.link-panel:nth-child(1)::before {
	background-image: url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb15?auto=format&fit=crop&w=1200&q=80");
}

.link-panel:nth-child(2)::before {
	background-image: url("https://images.unsplash.com/photo-1599707254554-027aeb4deacd?auto=format&fit=crop&w=1200&q=80");
}

.link-panel:nth-child(3)::before {
	background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80");
}

.link-panel:nth-child(4)::before {
	background-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1200&q=80");
}

.link-panel > * {
	position: relative;
	z-index: 2;
}

.link-panel strong {
	display: block;
	font-size: 1.35rem;
	margin-bottom: 0.45rem;
}

/* ---------- Four-Panel Mobile ---------- */
@media (max-width: 1080px) {
	.full-width-links {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.full-width-links {
		grid-template-columns: 1fr;
	}

	.link-panel {
		min-height: 160px;
	}
}


/* =========================================
   6. GENERAL CONTENT / BODY SECTIONS
========================================= */
.section {
	padding: 5rem 0 4rem;
}

.section-head {
	max-width: 850px;
	margin-bottom: 1.75rem;
}

.section-head h2 {
	font-size: clamp(2.5rem, 3vw, 4rem);
	margin-bottom: 0.8rem;
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.muted {
	color: var(--muted);
}

.inline-link {
	color: var(--green);
	font-weight: 700;
}

/* ---------- General Section Mobile ---------- */
@media (max-width: 640px) {
	.section {
		padding: 4rem 0 3rem;
	}

	.section-head h2 {
		font-size: clamp(2rem, 7vw, 2.8rem);
	}
}


/* =========================================
   7. FEATURED CAPABILITIES
========================================= */
.cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.feature-card,
.plain-card {
	background: #fff;
	border: 1px solid var(--line);
}

.feature-image {
	height: 280px;
	background-size: cover;
	background-position: center;
}

.feature-body,
.plain-card-body {
	padding: 1.7rem 2rem;
}

.meta {
	display: flex;
	justify-content: space-between;
	gap: 0.55rem;
	font-size: 0.82rem;
	color: var(--muted);
	margin: 0.7rem 0;
}

/* ---------- Featured Capabilities Mobile ---------- */
@media (max-width: 1080px) {
	.cards-3 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.cards-3 {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   8. FULL-BLEED STORY SECTION
========================================= */
.full-bleed-story {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.full-bleed-story::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80") center/cover;
	transform: scale(1.01);
}

.full-bleed-story::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(16, 20, 20, 0.64) 0%,
		rgba(16, 20, 20, 0.36) 40%,
		rgba(16, 20, 20, 0.16) 100%
	);
}

.story-inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 4.5rem), var(--max));
	margin: 0 auto;
	color: #fff;
}

.story-copy {
	max-width: 720px;
}

.story-copy h2 {
	font-size: clamp(2rem, 1vw, 3rem);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.story-copy em {
	font-style: italic;
}

.story-video {
	margin: 1.25rem 0;
	width: min(100%, 560px);
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.story-video iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ---------- Full-Bleed Story Mobile ---------- */
@media (max-width: 860px) {
	.story-inner {
		width: min(calc(100% - 4rem), var(--max));
	}

	.story-copy h2 {
		font-size: clamp(2rem, 6vw, 3rem);
	}
}


/* =========================================
   9. SPLIT IMAGE / TEXT SECTION
========================================= */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.split-media {
	min-height: 480px;
	background: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80") center/cover;
}

/* ---------- Split Section Mobile ---------- */
@media (max-width: 1080px) {
	.split {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}


/* =========================================
   10. PROCESS SECTION
========================================= */
.process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.step {
	background: #fff;
	border: 1px solid var(--line);
	padding: 1.4rem;
}

.step-num {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: #e09543;
	font-weight: 700;
	color: #ffffff;
}

/* ---------- Process Mobile ---------- */
@media (max-width: 1080px) {
	.process-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.process-grid {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   11. TESTIMONIAL / QUOTE SECTION
========================================= */
.quote-wrap {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
}

.quote-card {
	background: #fff;
	border: 1px solid var(--line);
	padding: 2rem;
}

.quote-card blockquote {
	margin: 0;
	font-size: clamp(1.8rem, 2vw, 2.6rem);
	line-height: 1.06;
}

.quote-photo {
	min-height: 370px;
	background: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1400&q=80") center/cover;
}

/* ---------- Quote Mobile ---------- */
@media (max-width: 1080px) {
	.quote-wrap {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.quote-wrap {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   12. FOOTER CTA BAND
========================================= */
.cta-band {
	background: var(--green);
	color: #fff;
}

.cta-band-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 2rem;
	align-items: center;
	padding: 3rem 0;
}

.cta-form {
	border: 1px solid rgba(255, 255, 255, 0.16);
	padding: 1.35rem;
}

.cta-form input {
	width: 100%;
	min-height: 50px;
	margin: 0.8rem 0 1rem;
	border: none;
	padding: 0 1rem;
}

/* ---------- Footer CTA Mobile ---------- */
@media (max-width: 1080px) {
	.cta-band-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.cta-band-inner {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   13. FOOTER
========================================= */
.footer {
	background: #fff;
	padding: 3.5rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1fr;
	gap: 1.25rem;
}

.footer-grid a,
.footer-grid p {
	display: block;
	margin: 0.45rem 0;
	color: #58625d;
}

.footer .logo {
	color: var(--ink);
}

.footer .logo-mark {
	background: var(--green);
	color: #fff;
	border: none;
}

.footer .logo small {
	color: var(--muted);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(34, 48, 45, 0.12);
	color: #58625d;
	font-size: 0.95rem;
}

/* ---------- Footer Mobile ---------- */
@media (max-width: 1080px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}