/* ============================================
   SHAW PLUMBING V3 — Plain CSS Design System
   ============================================ */

/* ============================================
   1. CUSTOM PROPERTIES
   ============================================ */
:root {
	/* Colors */
	--shaw-navy: #0A1628;
	--shaw-navy-light: #162D50;
	--shaw-blue: #01ABD6;
	--shaw-blue-light: #33C3E8;
	--shaw-teal: #1A8A7D;
	--shaw-sand: #F5F0E8;
	--shaw-sand-dark: #E8DFD2;
	--shaw-dark: #060E1A;
	--shaw-gray: #94A3B8;
	--shaw-light: #FAFAF7;
	--shaw-warm-white: #FBF9F6;

	/* Typography */
	--font-display: 'Bricolage Grotesque', system-ui, sans-serif;
	--font-sans: 'Geist', system-ui, -apple-system, sans-serif;
	--font-accent: 'Instrument Serif', Georgia, serif;

	/* Spacing */
	--section-py: 5rem;
	--section-py-lg: 7rem;
	--container-px: 1.5rem;
	--container-max: 80rem;

	/* Radii */
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.25rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;

	/* Transitions */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--transition-fast: 200ms;
	--transition-normal: 300ms;
	--transition-slow: 500ms;
}

/* ============================================
   2. RESET + BASE
   ============================================ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	color: rgba(255, 255, 255, 0.8);
	background-color: var(--shaw-dark);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

button {
	border: none;
	background: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

/* ============================================
   3. LAYOUT UTILITIES
   ============================================ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-px);
	padding-right: var(--container-px);
}

.container-sm {
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-px);
	padding-right: var(--container-px);
}

.container-xs {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-px);
	padding-right: var(--container-px);
}

.section {
	padding-top: var(--section-py);
	padding-bottom: var(--section-py);
}

.section-lg {
	padding-top: var(--section-py-lg);
	padding-bottom: var(--section-py-lg);
}

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

.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

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

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mx-auto { margin-left: auto; margin-right: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.block { display: block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }
.font-accent { font-family: var(--font-accent); font-style: italic; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1.05; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.15; }
.leading-relaxed { line-height: 1.75; }
.whitespace-nowrap { white-space: nowrap; }
.italic { font-style: italic; }

/* Text colors */
.text-white { color: #ffffff; }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-white-40 { color: rgba(255, 255, 255, 0.4); }
.text-white-30 { color: rgba(255, 255, 255, 0.3); }

.text-navy { color: var(--shaw-navy); }
.text-navy-60 { color: rgba(10, 22, 40, 0.6); }
.text-navy-50 { color: rgba(10, 22, 40, 0.5); }
.text-navy-40 { color: rgba(10, 22, 40, 0.4); }

.text-blue { color: var(--shaw-blue); }
.text-blue-light { color: var(--shaw-blue-light); }
.text-teal { color: var(--shaw-teal); }
.text-red { color: #ef4444; }

/* ============================================
   5. BACKGROUNDS
   ============================================ */
.bg-navy { background-color: var(--shaw-navy); }
.bg-navy-light { background-color: var(--shaw-navy-light); }
.bg-dark { background-color: var(--shaw-dark); }
.bg-sand { background-color: var(--shaw-sand); }
.bg-sand-dark { background-color: var(--shaw-sand-dark); }
.bg-warm-white { background-color: var(--shaw-warm-white); }
.bg-white { background-color: #ffffff; }
.bg-blue { background-color: var(--shaw-blue); }

.bg-white-5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-blue-10 { background-color: rgba(1, 171, 214, 0.1); }
.bg-blue-15 { background-color: rgba(1, 171, 214, 0.15); }
.bg-blue-20 { background-color: rgba(1, 171, 214, 0.2); }
.bg-teal-20 { background-color: rgba(26, 138, 125, 0.2); }
.bg-red-10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-20 { background-color: rgba(239, 68, 68, 0.2); }

.bg-green-50 { background-color: #f0fdf4; }
.bg-red-50 { background-color: #fef2f2; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.text-green-800 { color: #166534; }
.text-red-800 { color: #991b1b; }
.text-green-900 { color: #14532d; }
.text-red-900 { color: #7f1d1d; }

.bg-gradient-dark {
	background: linear-gradient(to bottom right, rgba(6, 14, 26, 0.85), rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.5));
}

.bg-gradient-navy {
	background: linear-gradient(to bottom right, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.8), rgba(6, 14, 26, 0.9));
}

.bg-gradient-dark-subtle {
	background: linear-gradient(to bottom right, rgba(6, 14, 26, 0.4), transparent);
}

.bg-gradient-to-t-navy {
	background: linear-gradient(to top, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.4), transparent);
}

.bg-gradient-blue {
	background: linear-gradient(135deg, var(--shaw-blue), var(--shaw-blue-light));
}

.border-white-5 { border: 1px solid rgba(255, 255, 255, 0.05); }
.border-white-10 { border: 1px solid rgba(255, 255, 255, 0.1); }
.border-white-20 { border: 1px solid rgba(255, 255, 255, 0.2); }
.border-white-30 { border: 1px solid rgba(255, 255, 255, 0.3); }
.border-blue-30 { border: 1px solid rgba(1, 171, 214, 0.3); }
.border-blue-200 { border: 1px solid #bfdbfe; }

.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* ============================================
   6. HEADER & NAV
   ============================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: all 500ms;
	background: transparent;
}

.header-scrolled {
	background: rgba(10, 22, 40, 0.95) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.top-bar {
	background-color: rgba(1, 171, 214, 0.9);
	padding: 0.375rem 0;
	display: none;
}

.main-nav {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 1rem var(--container-px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.nav-logo img {
	height: 2.5rem;
	transition: transform 300ms;
}

.nav-logo:hover img {
	transform: scale(1.05);
}

.nav-logo-text {
	display: none;
}

.nav-logo-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: #fff;
	display: block;
	line-height: 1.2;
}

.nav-logo-tagline {
	font-size: 0.625rem;
	color: var(--shaw-blue-light);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-family: var(--font-sans);
}

.desktop-menu {
	display: none;
	align-items: center;
	gap: 2rem;
	font-size: 0.875rem;
	font-family: var(--font-sans);
	font-weight: 500;
}

.desktop-menu > a,
.dropdown-trigger {
	color: rgba(255, 255, 255, 0.8);
	transition: color var(--transition-fast);
}

.desktop-menu > a:hover,
.dropdown-trigger:hover {
	color: var(--shaw-blue);
}

/* Dropdown */
.dropdown {
	position: relative;
}

.dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	cursor: pointer;
	background: none;
	border: none;
	font: inherit;
}

.dropdown-trigger svg {
	width: 0.75rem;
	height: 0.75rem;
	transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-trigger svg {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	padding-top: 0.75rem;
	display: none;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-panel {
	background-color: var(--shaw-navy);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-xl);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	padding: 0.5rem 0;
	width: 16rem;
	backdrop-filter: blur(12px);
}

.dropdown-panel a {
	display: block;
	padding: 0.625rem 1.25rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	transition: color var(--transition-fast), background var(--transition-fast);
}

.dropdown-panel a:hover {
	color: var(--shaw-blue);
	background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
	display: none;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--shaw-blue);
	color: #fff;
	padding: 0.625rem 1.25rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.875rem;
	transition: background var(--transition-normal);
}

.nav-cta:hover {
	background-color: var(--shaw-blue-light);
}

.mobile-menu-btn {
	display: block;
	padding: 0.5rem;
	color: #fff;
}

.mobile-menu {
	display: none;
	background-color: rgba(10, 22, 40, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
	display: block;
}

.mobile-menu-inner {
	padding: 1rem var(--container-px);
}

.mobile-menu-inner > a {
	display: block;
	padding: 0.625rem 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	transition: color var(--transition-fast);
}

.mobile-menu-inner > a:hover {
	color: var(--shaw-blue);
}

.mobile-menu-inner .mobile-sub-link {
	display: block;
	padding: 0.5rem 0 0.5rem 1rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	transition: color var(--transition-fast);
}

.mobile-menu-inner .mobile-sub-link:hover {
	color: var(--shaw-blue);
}

.mobile-menu-cta {
	display: block;
	padding: 0.75rem;
	margin-top: 0.75rem;
	background-color: var(--shaw-blue);
	text-align: center;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.875rem;
	color: #fff;
}

/* ============================================
   7. HERO SECTIONS
   ============================================ */
.hero-home {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-clip {
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-inner {
	position: relative;
	padding-top: 180px;
	padding-bottom: 80px;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(1, 171, 214, 0.15);
	border: 1px solid rgba(1, 171, 214, 0.3);
	border-radius: var(--radius-full);
	padding: 0.375rem 1rem;
	margin-bottom: 1.5rem;
}

.hero-badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--shaw-blue);
	border-radius: 50%;
}

.hero-badge-text {
	color: var(--shaw-blue-light);
	font-size: 0.875rem;
	font-family: var(--font-sans);
	font-weight: 500;
	letter-spacing: 0.025em;
}

.hero-title {
	font-family: var(--font-display);
	font-weight: 800;
	color: #fff;
	margin-bottom: 1.75rem;
	line-height: 1.05;
	font-size: 3rem;
}

.hero-title .accent {
	color: var(--shaw-blue);
}

.hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2.5rem;
	line-height: 1.75;
	max-width: 36rem;
	font-family: var(--font-sans);
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Inner page hero */
.inner-hero {
	position: relative;
	padding-top: 180px;
	padding-bottom: 6rem;
	overflow: hidden;
}

/* ============================================
   8. BUTTONS
   ============================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background-color: var(--shaw-blue);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 1.125rem;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.btn-primary::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, var(--shaw-blue), var(--shaw-blue-light));
	z-index: -1;
	border-radius: inherit;
	opacity: 0;
	transition: opacity var(--transition-normal);
	filter: blur(12px);
}

.btn-primary:hover {
	background-color: var(--shaw-blue-light);
	transform: translateY(-1px);
}

.btn-primary:hover::after {
	opacity: 0.4;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 1.125rem;
	transition: all var(--transition-normal);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
}

.btn-outline:hover {
	background: #fff;
	color: var(--shaw-navy);
	border-color: #fff;
}

.btn-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: var(--shaw-navy);
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 0.875rem;
	transition: all var(--transition-normal);
}

.btn-dark:hover {
	background-color: var(--shaw-navy-light);
}

.btn-dark-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-white-outline {
	display: block;
	width: 100%;
	border: 1px solid #fff;
	text-align: center;
	padding: 1rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 700;
	color: #fff;
	transition: all var(--transition-normal);
}

.btn-white-outline:hover {
	background: #fff;
	color: var(--shaw-navy);
}

.btn-block {
	display: block;
	width: 100%;
	text-align: center;
	padding: 1rem;
	border-radius: var(--radius-full);
	font-family: var(--font-sans);
	font-weight: 700;
	transition: all var(--transition-normal);
}

.btn-sm {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

/* ============================================
   9. CARDS
   ============================================ */
.service-card {
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(10, 22, 40, 0.15), 0 0 0 1px rgba(1, 171, 214, 0.15);
}

.service-card-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background var(--transition-normal);
}

.service-card:hover .service-card-icon {
	background-color: rgba(1, 171, 214, 0.2);
}

.service-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 1rem;
	color: var(--shaw-blue);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 0.875rem;
}

.testimonial-card {
	position: relative;
	transition: transform var(--transition-normal);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
}

.testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: -8px;
	left: 16px;
	font-family: var(--font-accent);
	font-size: 4rem;
	line-height: 1;
	color: var(--shaw-blue);
	opacity: 0.3;
}

.testimonial-card:hover {
	transform: translateY(-3px);
}

.testimonial-avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.875rem;
}

.blog-card {
	overflow: hidden;
}

.blog-card img {
	transition: transform 0.5s var(--ease-out);
}

.blog-card:hover img {
	transform: scale(1.08);
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	text-align: center;
}

.stat-number {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--shaw-blue);
	font-variant-numeric: tabular-nums;
}

.link-card {
	display: block;
	background: #fff;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all var(--transition-normal);
}

.link-card:hover {
	box-shadow: 0 20px 40px rgba(10, 22, 40, 0.15);
}

.link-card-image {
	height: 11rem;
	overflow: hidden;
}

.link-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.link-card:hover .link-card-image img {
	transform: scale(1.1);
}

.link-card-body {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.link-card-arrow {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--shaw-sand);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-normal);
}

.link-card:hover .link-card-arrow {
	background-color: var(--shaw-blue);
}

.link-card-arrow svg {
	width: 1rem;
	height: 1rem;
	color: var(--shaw-navy);
	transition: color var(--transition-normal);
}

.link-card:hover .link-card-arrow svg {
	color: #fff;
}

/* Image tile card (services section on homepage) */
.image-tile {
	position: relative;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: flex-end;
}

.image-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms;
}

.image-tile:hover img {
	transform: scale(1.1);
}

.image-tile-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.4), transparent);
}

.image-tile-content {
	position: relative;
	padding: 1.5rem;
	width: 100%;
}

/* Sidebar cards */
.sidebar-cta {
	background-color: var(--shaw-navy);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: 2rem;
}

.sidebar-links {
	background-color: var(--shaw-sand);
	border-radius: var(--radius-xl);
	padding: 2rem;
}

/* ============================================
   10. COMPONENTS
   ============================================ */
.copper-line {
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--shaw-blue), var(--shaw-blue-light));
	border-radius: 2px;
}

.noise-overlay {
	position: relative;
}

.noise-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 200px 200px;
	pointer-events: none;
	z-index: 1;
}

.gradient-line {
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(1, 171, 214, 0.5), transparent);
}

.gradient-line-thick {
	height: 4px;
	background: linear-gradient(to right, transparent, var(--shaw-blue), transparent);
}

.gradient-border-top {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Marquee */
@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

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

.marquee-track:hover {
	animation-play-state: paused;
}

.marquee-pill {
	border-radius: var(--radius-full);
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-family: var(--font-sans);
	font-weight: 500;
	white-space: nowrap;
	color: #fff;
}

/* Float badge animation */
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.float-badge {
	animation: float 4s ease-in-out infinite;
}

/* ============================================
   11. FORMS
   ============================================ */
input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--shaw-blue);
	box-shadow: 0 0 0 3px rgba(1, 171, 214, 0.15);
}

/* ============================================
   12. FOOTER
   ============================================ */
.site-footer {
	background-color: var(--shaw-dark);
	color: rgba(255, 255, 255, 0.6);
	position: relative;
}

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

.footer-heading {
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.25rem;
}

.footer-links {
	font-size: 0.875rem;
}

.footer-links > * + * {
	margin-top: 0.625rem;
}

.footer-links a:hover {
	color: var(--shaw-blue);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.footer-contact-item svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--shaw-blue);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 1.25rem var(--container-px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
}

.footer-social a {
	color: rgba(255, 255, 255, 0.4);
	transition: color var(--transition-fast);
}

.footer-social a:hover {
	color: var(--shaw-blue);
}

.footer-bbb {
	display: inline-block;
	opacity: 0.7;
	transition: opacity var(--transition-fast);
}

.footer-bbb:hover {
	opacity: 1;
}

.footer-bbb-inner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 0.5rem 1rem;
}

/* ============================================
   13. MOBILE PHONE BAR
   ============================================ */
.mobile-phone-bar {
	display: none;
}

/* ============================================
   14. SCROLL REVEAL
   ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.stagger-children > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   15. RESPONSIVE
   ============================================ */

/* sm: 640px */
@media (min-width: 640px) {
	.nav-logo-text { display: block; }

	.hero-actions { flex-direction: row; }

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

	.footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* md: 768px */
@media (min-width: 768px) {
	:root {
		--section-py: 5rem;
		--section-py-lg: 7rem;
	}

	.top-bar { display: block; }

	.nav-cta { display: inline-flex; }

	.hero-clip { clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }

	.hero-title { font-size: 3.75rem; }
	.hero-subtitle { font-size: 1.25rem; }

	.inner-hero { padding-top: 200px; padding-bottom: 8rem; }

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

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

	.mobile-phone-bar { display: none !important; }
}

@media (max-width: 767px) {
	.mobile-phone-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 50;
		background: linear-gradient(135deg, var(--shaw-blue), var(--shaw-blue-light));
		padding: 0.875rem 1rem;
		text-align: center;
	}

	body {
		padding-bottom: 56px;
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {
	.desktop-menu { display: flex; }

	.mobile-menu-btn { display: none; }

	.hero-title { font-size: 4.5rem; }

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

	/* 12-col grid for about section */
	.grid-12 {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
	}

	.col-span-6 { grid-column: span 6; }
	.col-span-5-start-8 { grid-column: 8 / span 5; }

	/* Service page 2/3 + 1/3 layout */
	.grid-content-sidebar {
		display: grid;
		grid-template-columns: 2fr 1fr;
		gap: 3rem;
	}
}

/* Parallax image */
.parallax-img {
	will-change: transform;
	transition: transform 0.1s linear;
}

/* SVG icon sizing */
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1rem; height: 1rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-xl { width: 1.75rem; height: 1.75rem; }

/* Additional padding helpers */
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-44 { padding-top: 11rem; }
.pt-48 { padding-top: 12rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-20 { margin-top: 5rem; }

/* Print */
@media print {
	.site-header,
	.mobile-phone-bar,
	.noise-overlay::before {
		display: none;
	}

	body {
		padding-bottom: 0;
		color: #000;
		background: #fff;
	}
}
