/* ==========================================================================
   Home - NEW Template Styles
   All rules scoped to section-level classes to avoid global bleed.
   ========================================================================== */

/* ---------- Design Tokens (scoped custom properties) ---------- */
.home-hero,
.home-about,
.home-services,
.home-cases,
.home-specialties,
.home-cta {
	--sa-navy: #0A1C44;
	--sa-navy-dark: #1A2630;
	--sa-copper: #AE8F7E;
	--sa-copper-light: #d4a76a;
	--sa-cream: #f5f0e8;
	--sa-cream-dark: #ece5d8;
	--sa-white: #ffffff;
	--sa-text: #3a3a3a;
	--sa-text-light: #6b6b6b;
	--sa-border: #d9d2c7;
	font-family: "Open Sans", sans-serif;
}

.home-hero p,
.home-about p,
.home-services p,
.home-cases p,
.home-specialties p,
.home-cta p {
	font-size: 18px;
}


/* ==========================================================================
   SHARED: Section Labels & Intro Text
   ========================================================================== */

.home-about .section-label,
.home-services .section-label,
.home-cases .section-label,
.home-specialties .section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--sa-copper);
	margin-bottom: 16px;
}

.home-about h2,
.home-services h2,
.home-cases h2,
.home-specialties h2,
.home-cta h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--sa-white);
	margin: 0 0 16px;
}

.home-services .section-intro,
.home-cases .section-intro {
	font-size: 17px;
	line-height: 1.65;
	color: var(--sa-white);
	max-width: 680px;
	margin: 0 0 48px;
	opacity: 0.8;
	font-weight: 500;
}


/* ==========================================================================
   SHARED: Buttons
   ========================================================================== */

.home-about .btn-primary,
.home-services .btn-primary,
.home-cta .btn-primary {
	display: inline-block;
	padding: 15px 30px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--sa-white);
	background-color: var(--sa-copper);
	border: none;
	border-radius: 0;
	text-decoration: none;
	transition: background-color 0.25s ease;
	width: 100%;
	max-width: 220px;
	text-align: center;
}

.home-about .btn-primary:hover,
.home-services .btn-primary:hover,
.home-cta .btn-primary:hover {
	background-color: var(--sa-copper-light);
	color: var(--sa-white);
	text-decoration: none;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.home-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 250px 0;
	text-align: center;
	color: var(--sa-white);
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 28, 68, 0.85) 0%,
		rgba(10, 28, 68, 0.85) 100%
	);
	z-index: 0;
}

.home-hero > .container {
	position: relative;
	z-index: 1;
}

.home-hero h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 80px;
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 24px;
	color: var(--sa-white);
}

.home-hero p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	font-weight: 600;
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

.home-about {
	background: #0A1C44;
}

.home-about .about-inner {
	display: flex;
	min-height: 560px;
}

.home-about .about-content {
	width: 50%;
	flex-shrink: 0;
	padding: 100px 80px 80px;
	max-width: 720px;
	margin-left: auto;
}

.home-about h2 {
	font-size: 42px;
}

.home-about .about-text {
	font-size: 18px;
	line-height: 1.75;
	color: var(--sa-white);
	margin-bottom: 32px;
}

.home-about .about-text p {
	margin-bottom: 16px;
}

.home-about .about-text p:last-child {
	margin-bottom: 0;
}

.home-about .btn-primary {
	margin-top: 8px;
}

/* About — Right Half Background Image */
.home-about .about-image {
	width: 50%;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 40px;
}

.home-about .about-quote {
	position: relative;
	background-color: var(--sa-white);
	color: var(--sa-navy);
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-style: italic;
	line-height: 1.6;
	padding: 24px 28px 24px 40px;
	border-radius: 6px;
	max-width: 340px;
	margin: 0;
}

.home-about .about-quote::before {
	content: "";
	font-size: 48px;
	font-style: normal;
	background: var(--sa-copper);
	position: absolute;
	top: 15px;
	left: 15px;
	height: 1px;
	width: 40px;
}

/* About — Stats Row (inside left column) */
.home-about .about-stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.home-about .stat {
	text-align: center;
	flex: 1;
}

.home-about .stat-number {
	display: block;
	font-size: 36px;
	font-weight: 700;
	font-family: "Cormorant Garamond", serif;
	color: var(--sa-copper);
	line-height: 1.1;
	margin-bottom: 4px;
}

.home-about .stat-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	letter-spacing: 0.3px;
}


/* ==========================================================================
   SERVICES
   ========================================================================== */

.home-services {
	padding: 100px 0;
	background-color: var(--sa-navy);
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.home-services::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 28, 68, 0.85) 0%,
		rgba(10, 28, 68, 0.85) 100%
	);
	z-index: 0;
}

.home-services .container {
	position: relative;
	z-index: 2;
}

.home-services .services-grid {
	margin-bottom: 48px;
}

.home-services .service-card {
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 6px;
	padding: 36px 28px;
	height: 100%;
	transition: box-shadow 0.25s ease;
	
	-webkit-transition: all 0.2s ease;/* Safari 3.2+, Chrome */
	  -moz-transition: all 0.2s ease;/* Firefox 4-15 */
	  -o-transition: all 0.2s ease;/* Opera 10.5-12.00 */
	  transition: all 0.2s ease;/* Firefox 16+, Opera 12.50+ */
}

.home-services .service-card:hover {
	border: 1px solid var(--sa-copper); 
	box-shadow: 0px 7px 24px 0px #AE8F7E59;
}

.home-services .service-icon {
	margin-bottom: 20px;
}

.home-services .service-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.home-services .service-card h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--sa-white);
	margin: 0 0 12px;
	line-height: 1.3;
}

.home-services .service-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--sa-white);
	margin: 0;
	opacity: 0.8;
}

/* Gap between service card rows */
.home-services .services-grid > [class*="col-"] {
	margin-bottom: 24px;
}


/* ==========================================================================
   CASE STUDIES
   ========================================================================== */

.home-cases {
	padding: 100px 0 50px;
	background-color: #F7F5F3;
}

.home-cases h2 {
	color: var(--sa-navy);
}

.home-cases .section-intro {
	color: var(--sa-navy-dark);
	font-weight: 300;
}

.home-cases .cases-grid > [class*="col-"] {
	margin-bottom: 24px;
}

.home-cases .case-card {
	height: 100%;
	background: #FFFFFF;
}

.home-cases .case-image {
	overflow: hidden;
	margin-bottom: 20px;
}

.home-cases .case-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.home-cases .case-content {
	padding: 30px;
}

.home-cases .case-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sa-copper);
	margin-bottom: 10px;
}

.home-cases .case-card h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	font-weight: 400;
	color: var(--sa-navy);
	margin: 0 0 10px;
	line-height: 1.3;
}

.home-cases .case-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--sa-text-light);
	margin: 0 0 16px;
}

.home-cases .case-result {
	font-size: 14px;
	font-weight: 600;
	color: var(--sa-copper);
	padding-top: 15px;
	display: flex;
	align-items: center;
}

.home-cases .case-result span {
	flex: 1;
}

.home-cases .case-result svg {
	margin-right: 10px;
}


/* ==========================================================================
   SPECIALTIES
   ========================================================================== */

.home-specialties {
	padding: 0 0 80px;
	background-color: #F7F5F3;
	text-align: center;
}

.home-specialties .section-label {
	color: var(--sa-copper);
	margin-bottom: 32px;
}

.home-specialties .specialties-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 32px;
}

.home-specialties .specialty-tag {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 500;
	color: var(--sa-navy);
	border: 1px solid rgba(10, 28, 68, 0.1);
	letter-spacing: 0.3px;
	transition: border-color 0.25s ease, background-color 0.25s ease;
	background: rgba(10, 28, 68, 0.05);
}

.home-specialties .specialty-tag:hover {
	border-color: var(--sa-copper);
	background-color: rgba(197, 147, 90, 0.1);
}

.home-specialties .specialties-tagline {
	font-size: 16px;
	font-style: italic;
	color: var(--sa-navy);
	font-weight: 400;
	margin: 0;
}


/* ==========================================================================
   CTA / WHAT'S NEXT
   ========================================================================== */

.home-cta {
	padding: 100px 0;
	background-color: #fff;
	text-align: center;
}

.home-cta h2 {
	margin-bottom: 56px;
	color: var(--sa-navy);
}

.home-cta .cta-steps {
	text-align: left;
	margin-bottom: 48px;
}

.home-cta .cta-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 28px 0;
	border-bottom: 1px solid var(--sa-border);
}

.home-cta .cta-step:first-child {
	padding-top: 0;
}

.home-cta .cta-step:last-child {
	border-bottom: none;
}

.home-cta .step-number {
	font-family: "Cormorant Garamond", serif;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--sa-copper);
	border: 2px solid var(--sa-copper);
	border-radius: 50%;
}

.home-cta .step-label {
	display: block;
	width: 100%;
	flex-basis: calc(100% - 60px);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--sa-copper);
	margin-bottom: 10px;
}

.home-cta .cta-step h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--sa-navy);
	margin: 0;
	flex-basis: calc(100% - 60px);
	line-height: 1.3;
}

.home-cta .cta-step p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--sa-text-light);
	margin: 0;
	flex-basis: calc(100% - 60px);
}

.home-cta .btn-primary {
	margin-top: 8px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {

	.home-hero {
		padding: 150px 0;
	}

	.home-hero h1 {
		font-size: 40px;
	}

	.home-services,
	.home-cases,
	.home-cta {
		padding: 72px 0;
	}

	/* Stack about columns */
	.home-about .about-inner {
		flex-direction: column;
	}

	.home-about .about-content {
		width: 100%;
		padding: 72px 15px;
		max-width: 720px;
		margin: 0 auto;
	}

	.home-about .about-image {
		width: 100%;
		min-height: 360px;
	}
}

@media (max-width: 767px) {

	.home-hero p {
		font-size: 16px;
	}

	.home-services,
	.home-cases,
	.home-cta {
		padding: 56px 0;
	}

	.home-about .about-content {
		padding: 56px 15px;
	}
	
	.home-about .about-content p {
		font-size: 16px;
	}

	.home-about .about-image {
		min-height: 280px;
		padding: 24px;
	}

	.home-about .about-quote {
		max-width: 100%;
	}

	.home-about .about-stats {
		flex-direction: column;
		gap: 24px;
	}

	.home-services .service-card {
		padding: 28px 22px;
	}

	.home-cases .case-image img {
		height: 180px;
	}

	.home-specialties .specialties-list {
		gap: 8px;
	}

	.home-specialties .specialty-tag {
		padding: 8px 16px;
		font-size: 13px;
	}

	.home-cta .step-number {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
}