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

:root {
	--blue-dark: #2c3987;
	--blue-mid: #36528f;
	--blue-light: #3d5a8a;
	--blue-pale: #c8d5e8;
	--blue-mist: #f0f3f8;
	--stone: #e8ebf2;
	--stone-dark: #b0bac8;
	--cream: #f8f9fc;
	--text-dark: #0f1a2e;
	--text-mid: #3a4560;
	--text-light: #515a69;
	--accent: #F5B800;
	--tag: #1a5c9e;
	--footer-text: #d4dff5;
}

html {
	scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 80px;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	overflow-x: hidden;
}


/* ================================================================
   NAV  (services.html standard — centered links, 48px logo)
   ================================================================ */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 4rem;
	background: rgba(248, 249, 252, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	align-items: center;
}

/* logo wrapper — both class spellings used across the pages */
.nav-logo,
.nav-loGO {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	color: var(--blue-dark);
	letter-spacing: -0.02em;
}

.nav-logo span,
.nav-loGO span {
	color: var(--accent);
	font-style: italic;
}

.nav-logo img,
.nav-logo img {
	height: 48px !important;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}

.nav-links a {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-mid);
	text-decoration: none;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--blue-mid);
}

.nav-links a.active {
	color: var(--blue-dark);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 2px;
}

.nav-cta {
	background: var(--blue-dark);
	color: var(--cream) !important;
	padding: 0.6rem 1.4rem;
	border-radius: 2rem;
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: var(--blue-mid) !important;
	color: var(--cream) !important;
}


/* ── HAMBURGER ── */
.nav-logo img,
.nav-loGO img {
	height: 48px;
	width: auto;
	display: block;
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
	z-index: 200;
	align-self: center;
	margin: auto 0;
}

.nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--blue-dark);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}


/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--cream);
	z-index: 150;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	color: var(--blue-dark);
	text-decoration: none;
	transition: color 0.2s;
}

.mobile-menu a:hover {
	color: var(--blue-light);
}

.mobile-menu .mobile-cta {
	margin-top: 1rem;
	background: var(--blue-dark);
	color: var(--cream) !important;
	font-family: 'DM Sans', sans-serif;
	font-size: 1rem !important;
	padding: 0.9rem 2.5rem;
	border-radius: 2rem;
}

.mobile-menu-contact {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--text-light);
	text-align: center;
	line-height: 1.7;
}

.mobile-menu-contact a {
	font-family: 'DM Sans', sans-serif;
	font-size: 0.85rem !important;
	color: var(--text-light) !important;
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu-contact a:hover {
	color: var(--blue-dark) !important;
}

.mobile-menu-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--blue-dark);
	cursor: pointer;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	min-height: unset;
	z-index: 201;
	align-self: center;
	min-height: unset;
	margin-top: 0.5rem;
}


/* ================================================================
   SHARED SECTION UTILITIES
   ================================================================ */

.section-tag {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--tag);
	margin-bottom: 1rem;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3vw, 2.8rem);
	line-height: 1.15;
	color: var(--blue-dark);
	letter-spacing: -0.02em;
}

.section-desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-mid);
	font-weight: 300;
}

/* section header two-col layout (index) */
.section-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
	align-items: end;
}

.section-header .section-desc {
	max-width: 440px;
	align-self: end;
}


/* ================================================================
   PAGE HERO  (services.html & about.html)
   ================================================================ */

.page-hero {
	position: relative;
	width: 100%;
	height: 44vh;
	min-height: 320px;
	max-height: 520px;
	margin-top: 72px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

/* about.html uses a slightly taller hero — override via inline or a modifier class */
.page-hero.page-hero--tall {
	height: 58vh;
	min-height: 380px;
	max-height: 580px;
	align-items: stretch;
}

.page-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 50%;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(44, 57, 135, 0.82) 0%, rgba(44, 57, 135, 0.5) 60%, rgba(44, 57, 135, 0.25) 100%);
}

/* services.html hero content sits at the bottom */
.page-hero-content {
	position: relative;
	z-index: 2;
	padding: 3rem 4rem 3.5rem;
	max-width: 680px;
}

/* about.html hero content is vertically centered — modifier */
.page-hero--tall .page-hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 4rem;
	max-width: 680px;
}

.page-hero-eyebrow {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.85rem;
}

.page-hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.1;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 0.9rem;
}

.page-hero-title em {
	font-style: italic;
	color: var(--blue-pale);
}

.page-hero-sub {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	max-width: 480px;
}


/* ================================================================
   HOMEPAGE HERO  (index.html)
   ================================================================ */

.hero {
	position: relative;
	width: 100%;
	height: 62vh;
	min-height: 400px;
	max-height: 640px;
	margin-top: 72px;
	overflow: hidden;
}

.hero-img-main {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
}

.hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(44, 57, 135, 0.72) 0%, rgba(44, 57, 135, 0.38) 55%, rgba(44, 57, 135, 0.18) 100%);
}

.hero-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 4rem;
	max-width: 720px;
}

.hero-eyebrow {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1rem;
}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.1;
	color: #fff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.hero-title em {
	font-style: italic;
	color: var(--blue-pale);
}

.hero-sub {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	max-width: 480px;
	margin-bottom: 1.75rem;
	font-weight: 300;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--accent);
	color: var(--blue-dark);
	padding: 0.85rem 1.75rem;
	border-radius: 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
	background: #d9b978;
	transform: translateY(-1px);
}

.btn-ghost {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 0.85rem 1.5rem;
	border-radius: 2rem;
	transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.7);
}

/* trust bar */
.hero-trust {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(44, 57, 135, 0.55);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding: 0.75rem 2rem;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.trust-check {
	width: 16px;
	height: 16px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	color: var(--blue-dark);
	font-weight: 700;
	flex-shrink: 0;
}

/* hero animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content>* {
	animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
	animation-delay: 0.1s;
}

.hero-title {
	animation-delay: 0.2s;
}

.hero-sub {
	animation-delay: 0.3s;
}

.hero-actions {
	animation-delay: 0.4s;
}


/* ================================================================
   MARQUEE  (index.html)
   ================================================================ */

.marquee-wrap {
	background: var(--blue-dark);
	padding: 1rem 0;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	gap: 3rem;
	animation: marquee 28s linear infinite;
	width: max-content;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.marquee-item {
	white-space: nowrap;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue-pale);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.marquee-item::after {
	content: '✦';
	color: var(--accent);
}


/* ================================================================
   INTRO STRIP  (services.html & about.html)
   ================================================================ */

.intro-strip {
	background: var(--blue-dark);
	padding: 2.25rem 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.intro-strip-text {
	font-size: 1rem;
	font-weight: 300;
	color: var(--footer-text);
	line-height: 1.65;
	max-width: 580px;
}

.intro-strip-text strong {
	font-weight: 500;
	color: #fff;
}

/* about.html uses .intro-strip-cta, services.html uses .intro-cta */
.intro-cta,
.intro-strip-cta {
	background: var(--accent);
	color: var(--blue-dark);
	padding: 0.8rem 1.75rem;
	border-radius: 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, transform 0.2s;
	flex-shrink: 0;
}

.intro-cta:hover,
.intro-strip-cta:hover {
	background: #d9a800;
	transform: translateY(-1px);
}


/* ================================================================
   FLOAT CARDS  (index.html process, about.html story & team)
   ================================================================ */

.process-float-card,
.story-float-card,
.team-float-card {
	position: absolute;
	background: var(--cream);
	border-radius: 1rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	min-width: 190px;
	border: 1px solid var(--stone);
}

.process-float-card {
	top: -2rem;
	right: -2.5rem;
}

.story-float-card {
	bottom: -2rem;
	right: -2.5rem;
}

.team-float-card {
	top: -2rem;
	left: -2.5rem;
	background: var(--blue-dark);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	border: none;
}

.float-label {
	font-size: 0.75rem;
	color: var(--text-light);
	margin-bottom: 0.4rem;
}

.float-val {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--blue-dark);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.float-sub {
	font-size: 0.8rem;
	color: var(--blue-light);
	font-weight: 500;
}

.team-float-card .float-label {
	color: var(--blue-pale);
}

.team-float-card .float-val {
	color: var(--cream);
	font-size: 1.5rem;
}

.team-float-card .float-sub {
	color: var(--accent);
}


/* ================================================================
   SERVICES GRID  (index.html)
   ================================================================ */

.services {
	padding: 7rem 4rem;
	background: var(--cream);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--blue-mist);
	border-radius: 1.5rem;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s;
	cursor: default;
}

.service-card:hover {
	transform: translateY(-4px);
}

.service-card.featured {
	background: var(--blue-dark);
}

.service-icon {
	width: 52px;
	height: 52px;
	background: var(--blue-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	font-size: 1.4rem;
}

.service-card.featured .service-icon {
	background: rgba(255, 255, 255, 0.12);
}

.service-icon-corner {
	position: absolute;
	top: 1.5rem;
	right: 1.75rem;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon-corner svg {
	width: 22px;
	height: 22px;
	fill: var(--accent);
}

.service-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.35rem;
	color: var(--blue-dark);
	margin-bottom: 0.75rem;
}

.service-card.featured .service-name {
	color: var(--cream);
}

.service-desc {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--text-mid);
	font-weight: 300;
}

.service-card.featured .service-desc {
	color: var(--blue-pale);
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.5rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--blue-mid);
	text-decoration: none;
}

.service-card.featured .service-link {
	color: var(--accent);
}


/* ================================================================
   SERVICES DETAIL SECTION  (services.html)
   ================================================================ */

.services-section {
	padding: 6rem 4rem;
	background: var(--cream);
}

.services-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4.5rem;
	align-items: end;
}

.service-category {
	margin-bottom: 6rem;
}

.service-category:last-child {
	margin-bottom: 0;
}

.category-header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--stone);
}

.category-icon {
	width: 52px;
	height: 52px;
	background: var(--blue-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.category-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--accent);
}

.category-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.75rem;
	color: var(--blue-dark);
	letter-spacing: -0.02em;
}

.category-subtitle {
	font-size: 0.88rem;
	color: var(--text-light);
	font-weight: 300;
	margin-top: 0.25rem;
}

/* service detail cards */
.service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.service-cards .service-card {
	border-radius: 1.25rem;
	padding: 2rem;
	border: 1px solid transparent;
	box-shadow: none;
}

.service-cards .service-card:hover {
	box-shadow: 0 12px 40px rgba(44, 57, 135, 0.1);
	border-color: var(--blue-pale);
}

.service-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--accent);
	border-radius: 2px 0 0 2px;
}

.service-card.featured .service-card-accent {
	background: rgba(245, 184, 0, 0.6);
}

.service-card-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	color: var(--blue-dark);
	margin-bottom: 0.6rem;
}

.service-card.featured .service-card-name {
	color: #fff;
}

.service-card-desc {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--text-mid);
	font-weight: 300;
}

.service-card.featured .service-card-desc {
	color: var(--blue-pale);
}

.service-card-includes {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.include-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--text-light);
	font-weight: 300;
}

.service-card.featured .include-item {
	color: rgba(200, 213, 232, 0.85);
}

.include-dot {
	width: 5px;
	height: 5px;
	background: var(--accent);
	border-radius: 50%;
	margin-top: 0.45em;
	flex-shrink: 0;
}


/* ================================================================
   PROCESS  (index.html)
   ================================================================ */

.process {
	background: var(--stone);
	padding: 7rem 4rem;
}

.process-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 6rem;
	align-items: center;
}

.process-image-wrap {
	position: relative;
}

.process-img {
	width: 100%;
	border-radius: 2rem;
	object-fit: cover;
	display: block;
}

.steps {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.step {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--stone-dark);
	align-items: flex-start;
}

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

.step-num {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	color: var(--tag);
	min-width: 32px;
	padding-top: 0.1rem;
}

.step-info h4 {
	font-size: 1rem;
	font-weight: 500;
	color: var(--blue-dark);
	margin-bottom: 0.3rem;
}

.step-info p {
	font-size: 0.88rem;
	color: var(--text-mid);
	line-height: 1.6;
	font-weight: 300;
}


/* ================================================================
   PROJECTS GALLERY  (index.html)
   ================================================================ */

.projects {
	padding: 7rem 4rem;
	background: var(--cream);
}

.projects-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	grid-template-rows: auto auto;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.project-card {
	border-radius: 1.5rem;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s;
}

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

.project-card.tall {
	grid-row: span 2;
}

.project-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(44, 57, 135, 0.75) 0%, transparent 50%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
}

.project-tag {
	display: inline-block;
	background: var(--accent);
	color: var(--blue-dark);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.6rem;
	border-radius: 1rem;
	margin-bottom: 0.5rem;
}

.project-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: #fff;
}

.project-loc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.2rem;
}


/* ================================================================
   STORY  (about.html)
   ================================================================ */

.story {
	padding: 7rem 4rem;
	background: var(--cream);
}

.story-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 6rem;
	align-items: center;
}

.story-image-wrap {
	position: relative;
}

.story-img {
	width: 100%;
	border-radius: 2rem;
	object-fit: cover;
	display: block;
	height: 500px;
}

.story-text p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-mid);
	font-weight: 300;
	margin-top: 1.5rem;
}

.story-text p:first-of-type {
	margin-top: 1.75rem;
}


/* ================================================================
   VALUES  (about.html)
   ================================================================ */

.values {
	padding: 7rem 4rem;
	background: var(--stone);
}

.values-header {
	max-width: 560px;
	margin-bottom: 4rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.value-card {
	background: var(--cream);
	border-radius: 1.5rem;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s;
}

.value-card:hover {
	transform: translateY(-4px);
}

.value-card.featured {
	background: var(--blue-dark);
}

.value-icon {
	width: 48px;
	height: 48px;
	background: var(--blue-mist);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
}

.value-card.featured .value-icon {
	background: rgba(255, 255, 255, 0.12);
}

.value-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--blue-dark);
}

.value-card.featured .value-icon svg {
	fill: var(--accent);
}

.value-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	color: var(--blue-dark);
	margin-bottom: 0.75rem;
}

.value-card.featured .value-name {
	color: var(--cream);
}

.value-desc {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--text-mid);
	font-weight: 300;
}

.value-card.featured .value-desc {
	color: var(--blue-pale);
}


/* ================================================================
   TEAM / OWNER  (about.html)
   ================================================================ */

.team {
	padding: 7rem 4rem;
	background: var(--cream);
}

.team-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.team-text p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-mid);
	font-weight: 300;
	margin-top: 1.25rem;
}

.team-quote {
	margin-top: 2.5rem;
	padding: 1.5rem 1.75rem;
	border-left: 3px solid var(--accent);
	background: var(--blue-mist);
	border-radius: 0 1rem 1rem 0;
}

.team-quote p {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--blue-dark);
	line-height: 1.55;
	margin-top: 0;
}

.team-quote cite {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 500;
	color: var(--tag);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.team-image-wrap {
	position: relative;
}

.team-img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 2rem;
	display: block;
}


/* ================================================================
   STATS  (about.html)
   ================================================================ */

.stats-section {
	background: var(--blue-dark);
	padding: 5rem 4rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

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

.stat-val {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.88rem;
	color: var(--blue-pale);
	font-weight: 300;
	line-height: 1.4;
}

.stat-divider {
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
	align-self: center;
	height: 60px;
}


/* ================================================================
   SEASONAL BANNER  (services.html)
   ================================================================ */

.seasonal-banner {
	background: var(--stone);
	padding: 4.5rem 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

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

.season-card {
	background: var(--cream);
	border-radius: 1rem;
	padding: 1.5rem;
	border-top: 3px solid var(--blue-pale);
	transition: border-color 0.2s;
}

.season-card:hover {
	border-top-color: var(--accent);
}

.season-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tag);
	margin-bottom: 0.75rem;
}

.season-items {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.season-item {
	font-size: 0.85rem;
	color: var(--text-mid);
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.season-item::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--stone-dark);
	border-radius: 50%;
	flex-shrink: 0;
}


/* ================================================================
   SERVICE AREA  (services.html & about.html)
   ================================================================ */

/* services.html — dark bg two-col */
/* ── SERVICE AREA ── */
.service-area {
	padding: 7rem 4rem;
	background: var(--stone);
}

.area-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.area-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 2.5rem;
}

.area-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--text-mid);
	font-weight: 300;
}

.area-check {
	width: 20px;
	height: 20px;
	background: var(--blue-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	color: var(--accent);
	font-weight: 700;
	flex-shrink: 0;
}

.area-map-wrap {
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.area-map-wrap iframe {
	display: block;
}

/* ================================================================
   TESTIMONIALS / REVIEWS  (all pages)
   ================================================================ */

.testimonials {
	background: var(--blue-dark);
	padding: 7rem 4rem;
}

.testimonials .section-title {
	color: var(--cream);
}

.testimonials .section-tag {
	color: var(--accent);
}

.testimonials .section-desc {
	color: var(--blue-pale);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.review-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.25rem;
	padding: 2rem;
}

.stars {
	color: var(--accent);
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.review-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--blue-pale);
	font-weight: 300;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: white;
	flex-shrink: 0;
}

.reviewer-name {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--cream);
}

.reviewer-loc {
	font-size: 0.78rem;
	color: rgba(212, 223, 245, 0.6);
}


/* ================================================================
   CTA / CONTACT SECTION  (all pages)
   ================================================================ */

.cta-section {
	background: var(--stone);
	padding: 6rem 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.cta-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: var(--blue-dark);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.cta-title em {
	font-style: italic;
	color: var(--blue-light);
}

.cta-sub {
	font-size: 1rem;
	color: var(--text-mid);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 2rem;
}

.cta-contact-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

.cta-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--text-mid);
	text-decoration: none;
	transition: color 0.2s;
}

.cta-contact-item:hover {
	color: var(--blue-dark);
}

.cta-contact-icon {
	width: 36px;
	height: 36px;
	background: var(--blue-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cta-contact-icon svg {
	width: 15px;
	height: 15px;
	fill: var(--accent);
}

.cta-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-group label {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-mid);
	letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.8rem 1rem;
	border: 1px solid var(--stone-dark);
	border-radius: 0.75rem;
	background: var(--cream);
	font-family: 'DM Sans', sans-serif;
	font-size: 0.9rem;
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--blue-light);
}

.form-group textarea {
	height: 100px;
	resize: vertical;
}

.submit-btn {
	background: var(--blue-dark);
	color: var(--cream);
	border: none;
	padding: 1rem 2rem;
	border-radius: 2rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	width: fit-content;
	align-self: flex-start;
}

.submit-btn:hover {
	background: var(--blue-mid);
	transform: translateY(-1px);
}

.label-optional {
	font-weight: 300;
	opacity: 0.6;
	font-size: 0.75rem;
}

.upload-area {
	border: 1.5px dashed var(--stone-dark);
	border-radius: 0.75rem;
	background: var(--cream);
	padding: 1.5rem 1rem;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	min-height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.upload-area:hover,
.upload-area.drag-over {
	border-color: var(--blue-light);
	background: color-mix(in srgb, var(--blue-light) 5%, var(--cream));
}

.upload-prompt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	text-align: center;
}

.upload-icon {
	width: 28px;
	height: 28px;
	fill: var(--blue-light);
	margin-bottom: 0.25rem;
	opacity: 0.7;
}

.upload-text {
	font-size: 0.9rem;
	color: var(--text-mid);
	margin: 0;
}

.upload-link {
	color: var(--blue-light);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.upload-hint {
	font-size: 0.75rem;
	color: var(--text-mid);
	opacity: 0.6;
	margin: 0;
}

.upload-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	width: 100%;
	margin-top: 0;
}

.upload-previews:not(:empty) {
	margin-top: 0.75rem;
}

.preview-item {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 0.5rem;
	overflow: hidden;
	flex-shrink: 0;
}

.preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.preview-remove {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	background: var(--blue-dark);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.15s;
	padding: 0;
	box-sizing: content-box;
}

.preview-item:hover .preview-remove {
	opacity: 1;
}

@media (hover: none) {
	.preview-remove {
		opacity: 1;
	}
}

.preview-remove svg {
	width: 10px;
	height: 10px;
	fill: var(--cream);
}

.add-more-btn {
	width: 72px;
	height: 72px;
	border-radius: 0.5rem;
	border: 1.5px dashed var(--stone-dark);
	background: transparent;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.65rem;
	font-weight: 500;
	color: var(--text-mid);
	transition: border-color 0.2s, color 0.2s, background 0.2s;
	flex-shrink: 0;
}

.add-more-btn:hover {
	border-color: var(--blue-light);
	color: var(--blue-light);
	background: color-mix(in srgb, var(--blue-light) 5%, var(--cream));
}

.add-more-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

footer {
	background: var(--blue-dark);
	color: var(--footer-text);
	padding: 4rem 4rem 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	overflow: hidden;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 2rem;
}

.footer-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: var(--cream);
	margin-bottom: 1rem;
}

.footer-brand span {
	color: var(--accent);
	font-style: italic;
}

.footer-brand img {
	height: 100px;
	width: auto;
	display: block;
}

.footer-tagline {
	font-size: 0.88rem;
	line-height: 1.65;
	font-weight: 300;
	color: var(--footer-text);
}

.footer-col h5 {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.25rem;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-col a {
	font-size: 0.88rem;
	color: var(--footer-text);
	text-decoration: none;
	font-weight: 300;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--cream);
}

.footer-social-links {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-top: 0.25rem;
}

.footer-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	color: var(--footer-text);
	transition: color 0.2s, background 0.2s;
	background: rgba(255,255,255,0.06);
}

.footer-social-links a:hover {
	color: var(--cream);
	background: rgba(255,255,255,0.12);
}

.footer-social-links svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

.footer-badges {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-top: 0.75rem;
}

.footer-badge {
	width: 220px;
	height: 220px;
	object-fit: contain;
	border-radius: 50%;
}

.footer-badge--lg {
	width: 283px;
	height: 283px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: rgba(212, 223, 245, 0.5);
}


/* ================================================================
   RESPONSIVE — TABLET  (≤1024px)
   ================================================================ */

@media (max-width: 1024px) {
	nav {
		padding: 1.25rem 2rem;
	}

	/* heroes */
	.hero {
		margin-top: 68px;
		height: 55vh;
	}

	.hero-content {
		padding: 2.5rem 2.5rem 4rem;
	}

	.page-hero-content {
		padding: 2rem 2.5rem 3rem;
	}

	.services {
		padding: 5rem 2rem;
	}

	.section-header {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2.5rem;
	}

	.section-header .section-desc {
		max-width: 100%;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process {
		padding: 5rem 2rem;
	}

	.process-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.process-float-card {
		right: 1rem;
		top: 1rem;
	}

	.process-img {
		height: 360px !important;
	}

	.projects {
		padding: 5rem 2rem;
	}

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

	.project-card.tall {
		grid-row: auto;
		height: 280px !important;
	}

	.project-card {
		height: 280px !important;
	}

	.services-section {
		padding: 5rem 2rem;
	}

	.services-intro {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 3rem;
	}

	.service-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.seasonal-banner {
		padding: 4rem 2rem;
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.service-area {
		padding: 4rem 2rem;
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.area-stats {
		grid-template-columns: repeat(4, 1fr);
	}

	.intro-strip {
		padding: 2rem;
	}

	/* about.html */
	.story,
	.team,
	.values,
	.stats-section {
		padding: 5rem 2rem;
	}

	.story-inner,
	.team-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.story-img,
	.team-img {
		height: 300px;
	}

	.story-float-card {
		right: 0.5rem;
		bottom: -1.5rem;
	}

	.team-float-card {
		left: 0.5rem;
		top: -1.5rem;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 2rem;
	}

	.stat-divider {
		display: none;
	}

	.area-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.testimonials {
		padding: 5rem 2rem;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.cta-section {
		padding: 5rem 2rem;
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	footer {
		padding: 3rem 2rem 1.5rem;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
}


/* ================================================================
   RESPONSIVE — MOBILE  (≤767px)
   ================================================================ */

@media (max-width: 767px) {
	nav {
		padding: 1rem 1.25rem;
		align-items: center !important;
		display: flex;
		justify-content: space-between;
	}

	.nav-links {
		display: none !important;
	}

	.nav-hamburger {
		display: flex !important;
		align-self: center;
		min-height: unset;
	}

	.hero {
		margin-top: 60px;
		height: auto;
		min-height: 320px;
		max-height: none;
	}

	.hero-img-main {
		height: 420px;
		position: relative;
		width: 100%;
		object-fit: cover;
	}

	.hero-content {
		padding: 2rem 1.25rem 5rem;
		max-width: 100%;
	}

	.hero-title {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	.hero-sub {
		font-size: 0.93rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}

	.btn-primary,
	.btn-ghost {
		text-align: center;
		justify-content: center;
		padding: 1rem;
		font-size: 0.95rem;
	}

	.hero-trust {
		display: none !important;
	}

	.page-hero {
		margin-top: 60px;
		height: auto;
		min-height: 280px;
		max-height: none;
	}

	.page-hero-content {
		padding: 2rem 1.25rem 2.5rem;
		max-width: 100%;
	}

	.page-hero-title {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	/* index */
	.services {
		padding: 4rem 1.25rem;
	}

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

	.service-card {
		padding: 1.75rem;
	}

	.process {
		padding: 4rem 1.25rem;
	}

	.process-float-card {
		display: none !important;
	}

	.process-img {
		height: 260px !important;
		border-radius: 1rem;
	}

	.projects {
		padding: 4rem 1.25rem;
	}

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

	.project-card.tall {
		grid-row: auto;
		height: 260px !important;
	}

	.project-card {
		height: 260px !important;
	}

	.intro-strip {
		padding: 1.75rem 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}

	.services-section {
		padding: 3.5rem 1.25rem;
	}
	
	.service-card .service-name {
        padding-right: 3.5rem;
    }

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

	.category-header {
		gap: 1rem;
	}

	.category-title {
		font-size: 1.4rem;
	}

	.seasonal-banner {
		padding: 3.5rem 1.25rem;
	}

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

	.service-area {
		padding: 3.5rem 1.25rem;
	}

	.area-list {
		grid-template-columns: 1fr;
	}

	.area-stats {
		grid-template-columns: 1fr 1fr;
	}

	/* about.html */
	.story,
	.team,
	.values,
	.service-area--light,
	.stats-section {
		padding: 4rem 1.25rem;
	}

	.story-inner,
	.team-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.story-float-card {
		display: none !important;
	}

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

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.area-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.area-list {
		grid-template-columns: 1fr;
	}

	/* shared */
	.section-header {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.section-title {
		font-size: clamp(1.8rem, 6vw, 2.4rem);
	}

	.cta-title {
		font-size: clamp(1.8rem, 6vw, 2.4rem);
	}

	.testimonials {
		padding: 4rem 1.25rem;
	}

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

	.cta-section {
		padding: 3.5rem 1.25rem;
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.submit-btn {
		width: 100%;
		text-align: center;
		align-self: unset;
	}

	footer {
		padding: 3rem 1.25rem 1.5rem;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	footer iframe {
		max-width: 100%;
		width: 100% !important;
	}

	.footer-badge {
		width: 120px;
		height: 120px;
	}

	.footer-badge--lg {
		width: 155px;
		height: 155px;
	}

	.footer-brand-row {
		justify-content: flex-start;
		gap: 1rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
		font-size: 0.72rem;
	}
}

@media (hover: none) {

	.service-card:hover,
	.value-card:hover,
	.project-card:hover img,
	.season-card:hover,
	.btn-primary:hover,
	.intro-cta:hover,
	.intro-strip-cta:hover,
	.submit-btn:hover {
		transform: none;
	}

	a,
	button {
		min-height: 44px;
	}
}


/* ================================================================
   TESTIMONIALS — PHOTO BACKGROUND MODIFIER  (index.html only)
   ================================================================ */

.testimonials--photo {
	position: relative;
	background-image: url('../img/local-team.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.testimonials--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(44, 57, 135, 0.78);
	z-index: 0;
}

.testimonials--photo > * {
	position: relative;
	z-index: 1;
}

.testimonials--photo .review-card {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
	.testimonials--photo {
		background-attachment: scroll;
	}
}


/* ================================================================
   SERVICE CARDS — PHOTO BACKGROUND MODIFIER  (index.html only)
   ================================================================ */

.service-card.service-card--photo {
	background-color: var(--blue-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	isolation: isolate;
}

.service-card.service-card--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(44, 57, 135, 0.85);
	z-index: 0;
	transition: background 0.3s;
	pointer-events: none;
}

.service-card.service-card--photo:hover::before {
	background: rgba(44, 57, 135, 0.72);
}

.service-card.service-card--photo > *:not(.service-icon-corner) {
	position: relative;
	z-index: 1;
}

.service-card.service-card--photo > .service-icon-corner {
	z-index: 1;
}

.service-card.service-card--photo-patios {
	background-image: url('../img/patio-flagstone-large.webp');
}

.service-card.service-card--photo-stone {
	background-image: url('../img/retaining-wall-block-tall.webp');
}

.service-card.service-card--photo-yard {
	background-image: url('../img/lawn-mow-stripes-truck.webp');
}

a.service-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.service-link-mobile {
	display: none;
}

@media (hover: none), (pointer: coarse) {
	.service-link-desktop { display: none; }
	.service-link-mobile  { display: inline; }
}


/* ================================================================
   GALLERY PAGE
   ================================================================ */

.gallery {
	padding: 6rem 4rem;
	background: var(--cream);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 3rem;
}

.gallery-grid figure {
	margin: 0;
	overflow: hidden;
	border-radius: 1rem;
	background: var(--blue-mist);
	position: relative;
	cursor: pointer;
}

.gallery-grid img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
	transform: scale(1.03);
}

.gallery-placeholder {
	width: 100%;
	height: 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--blue-mist) 0%, var(--stone) 100%);
	color: var(--text-light);
	cursor: default;
}

.gallery-placeholder svg {
	width: 36px;
	height: 36px;
	fill: var(--stone-dark);
}

.gallery-placeholder-text {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gallery-grid figure.gallery-placeholder-wrap {
	cursor: default;
}

.gallery-grid figure.gallery-placeholder-wrap:hover img {
	transform: none;
}

/* lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.lightbox[hidden] {
	display: none;
}

.lightbox__img {
	max-width: 90vw;
	max-height: 85vh;
	width: auto;
	height: auto;
	border-radius: 0.5rem;
	box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
	background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
	top: 1.5rem;
	right: 1.5rem;
	font-size: 1.75rem;
	line-height: 1;
}

.lightbox__prev {
	left: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__next {
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 1024px) {
	.gallery {
		padding: 4rem 2rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.gallery {
		padding: 3.5rem 1.25rem;
	}

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

	.gallery-grid img,
	.gallery-placeholder {
		height: 240px;
	}

	.lightbox__close,
	.lightbox__prev,
	.lightbox__next {
		min-width: 48px;
		min-height: 48px;
	}

	.lightbox__close {
		top: 1rem;
		right: 1rem;
	}

	.lightbox__prev {
		left: 0.75rem;
	}

	.lightbox__next {
		right: 0.75rem;
	}
}