:root {
	--primary: #1a2332;
	--secondary: #e67e22;
	--accent: #f39c12;
	--dark: #0d1117;
	--light: #fafafa;
	--gray: #6c757d;
	--gray-light: #e9ecef;
	--white: #ffffff;
	--overlay: rgba(26, 35, 50, 0.92);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--primary);
	background: var(--light);
	line-height: 1.7;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
	color: var(--primary);
	line-height: 1.3;
	font-weight: 700;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.1;
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: var(--gray);
}

a {
	color: var(--secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent);
}

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

.container {
	width: min(1100px, 92%);
	margin: 0 auto;
}

.site-header {
	background: var(--white);
	color: var(--primary);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-bottom: 3px solid var(--secondary);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 0;
	gap: 2rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.brand-mark {
	width: 55px;
	height: 55px;
	background: var(--secondary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	color: var(--white);
}

.brand-label {
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0;
	color: var(--primary);
}

.brand-sub {
	margin: 0;
	font-size: 0.85rem;
	color: var(--gray);
	font-weight: 500;
}

nav {
	display: flex;
	gap: 2rem;
	align-items: center;
	font-size: 0.95rem;
	flex-wrap: wrap;
	font-weight: 600;
}

nav a {
	color: var(--primary);
	position: relative;
	padding-bottom: 4px;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary);
	transition: width 0.3s ease;
}

nav a:hover::after {
	width: 100%;
}

.hero {
	background: linear-gradient(135deg, var(--overlay), var(--overlay)),
		url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2000&q=80');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 85vh;
	display: flex;
	align-items: center;
	color: var(--white);
	position: relative;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-copy {
	max-width: 100%;
}

.hero-copy h1 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.85rem;
	color: var(--accent);
	margin-bottom: 1rem;
	font-weight: 700;
}

.lead {
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0;
}

.btn {
	background: var(--secondary);
	color: var(--white);
	border: none;
	padding: 1rem 2.5rem;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 4px;
}

.btn:hover {
	background: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	padding: 0.9rem 2.3rem;
}

.btn-outline:hover {
	background: var(--white);
	color: var(--primary);
	border-color: var(--white);
}

.btn-ghost {
	background: transparent;
	border: 2px solid var(--secondary);
	color: var(--white);
}

.btn-ghost:hover {
	background: var(--secondary);
	color: var(--white);
}

.btn-link {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 0;
	text-decoration: underline;
	text-transform: none;
}

.btn-link:hover {
	color: var(--accent);
}

.hero-metrics {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.metrics dt {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
}

.metrics dd {
	margin: 0.5rem 0 0 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
}

.license-note {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin: 0;
}

.hero-visual {
	display: none;
}

.hero-panel {
	display: none;
}

.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section:nth-child(even) {
	background: var(--gray-light);
}

.section-dark {
	background: var(--primary);
	color: var(--white);
}

.section-dark h2,
.section-dark h3 {
	color: var(--white);
}

.section-dark p {
	color: rgba(255, 255, 255, 0.85);
}

.section-dark .eyebrow {
	color: var(--accent);
}

.section-heading {
	max-width: 750px;
	margin: 0 auto 3rem;
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 1rem;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.card {
	background: var(--white);
	padding: 2rem;
	border-left: 4px solid var(--secondary);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.card ul {
	padding-left: 1.2rem;
	margin: 1rem 0 0 0;
	list-style: none;
}

.card ul li {
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.card ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
}

.service-grid {
	gap: 2rem;
}

.service-card {
	background: var(--white);
	border-left: 4px solid var(--secondary);
	display: block;
	min-height: auto;
}

.service-card:hover {
	border-left-color: var(--accent);
}

.service-index {
	font-size: 3rem;
	font-weight: 700;
	color: var(--secondary);
	opacity: 0.3;
	display: block;
	line-height: 1;
	margin-bottom: 1rem;
}

.service-list {
	list-style: none;
	margin: 1.5rem 0 0 0;
	padding: 1.5rem 0 0 0;
	border-top: 2px solid var(--gray-light);
}

.service-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.service-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.project-card {
	background: rgba(255, 255, 255, 0.05);
	overflow: hidden;
	transition: transform 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
	transform: translateY(-8px);
}

.project-media {
	position: relative;
	overflow: hidden;
}

.project-media img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.project-card:hover .project-media img {
	transform: scale(1.05);
}

.project-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--secondary);
	color: var(--white);
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.project-copy {
	padding: 1.5rem;
}

.project-type {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.project-meta {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-top: 1rem;
}

.assurance {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	align-items: start;
}

.assurance-panel {
	background: var(--white);
	padding: 2.5rem;
	border-left: 5px solid var(--secondary);
}

.assurance-panel h2 {
	margin-bottom: 1rem;
}

.badge-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.badge {
	background: var(--secondary);
	color: var(--white);
	padding: 0.6rem 1.2rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.assurance-timeline {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.assurance-timeline li {
	display: flex;
	gap: 1.5rem;
	align-items: start;
}

.timeline-step {
	min-width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--secondary);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.assurance-timeline h3 {
	margin-bottom: 0.5rem;
	color: var(--primary);
}

.assurance-timeline p {
	margin: 0;
}

.testimonials {
	background: var(--white);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

blockquote {
	margin: 0;
	background: var(--gray-light);
	padding: 2.5rem;
	border-left: 5px solid var(--secondary);
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--primary);
}

blockquote p {
	color: var(--primary);
	font-style: italic;
	margin-bottom: 1.5rem;
}

blockquote cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-weight: 700;
	color: var(--secondary);
	font-size: 0.95rem;
}

.contact {
	background: var(--dark);
	color: var(--white);
}

.contact-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	align-items: start;
	background: var(--primary);
	padding: 3rem;
	border-top: 5px solid var(--secondary);
}

.contact-info h2 {
	color: var(--white);
	margin-bottom: 1.5rem;
}

.contact-info p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin-bottom: 0.8rem;
}

.contact-meta {
	list-style: none;
	margin: 2rem 0 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.contact-meta li {
	color: rgba(255, 255, 255, 0.75);
	padding-left: 1.5rem;
	position: relative;
}

.contact-meta li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form textarea {
	margin-top: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	padding: 1rem;
	color: var(--white);
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--secondary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-map {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: block;
}

.site-footer {
	background: var(--dark);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	padding: 2.5rem 0;
	font-size: 0.95rem;
	border-top: 3px solid var(--secondary);
}

.site-footer p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
	.site-header .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	nav {
		width: 100%;
		justify-content: flex-start;
		gap: 1rem;
	}

	.hero {
		min-height: 70vh;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.metrics {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	.cards,
	.service-grid,
	.project-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.assurance {
		grid-template-columns: 1fr;
	}

	.contact-card {
		grid-template-columns: 1fr;
		padding: 2rem;
	}
}

@media (max-width: 600px) {
	.hero-cta {
		flex-direction: column;
		width: 100%;
	}

	.btn,
	.btn-outline,
	.btn-ghost {
		width: 100%;
		text-align: center;
	}

	.section-heading {
		text-align: left;
	}

	.brand-mark {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
}
