		:root {
			--space-md: 24px;
			--space-xl: 80px;
			--gutter: 24px;
			--color-surface: #f8f9fa;
			--color-surface-container-low: #f3f4f5;
			--color-on-surface: #191c1d;
			--color-secondary: #2a6a3f;
			--color-outline-variant: #e2bfb4;
			--color-on-surface-variant: #5a4139;
			--space-sm: 12px;
			--margin-mobile: 16px;
			--container-max: 1280px;
		}

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

		body {
			font-family: 'Sora', sans-serif;
			overflow-x: hidden;
		}

		/* Hero */
		.hero {
			position: relative;
			/*height: 50vh;*/
			min-height: 320px;
			display: flex;
			align-items: center;
			overflow: hidden;
			background-color: #00210c;
			padding-top: 11%;
			/*padding-top: 25%;
			Padding-bottom: 25%;*/
			padding-bottom: 7.5%;
		}

		.hero-bg {
			position: absolute;
			inset: 0;
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
			z-index: 0;
		}

		.hero-bg picture {
			position: absolute;
			inset: 0;
		}

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

		.hero-overlay {
			position: absolute;
			inset: 0;
			background: rgba(0, 33, 12, 0.45);
			z-index: 1;
		}

		.hero-content {
			position: relative;
			z-index: 2;
			max-width: 1280px;
			width: 100%;
			margin: 0 auto;
			padding: 0 40px;
		}

		.label-row {
		  display: flex;
		  align-items: center;
		  gap: 10px;
		  margin-bottom: 14px;
		}

		.label-row::before,
		.label-row::after {
		  content: '';
		  display: inline-block;
		  width: 32px;
		  height: 2px;
		  background: #F15A24;
		  flex-shrink: 0;
		}

		.label-text {
		  font-size: 11px;
		  letter-spacing: 0.14em;
		  text-transform: uppercase;
		  font-weight: 600;
		  color: #F15A24;
		}

		.label-row.white-bg::before,
		.label-row.white-bg::after {
		  background: #9F2F0E;
		}

		.label-text.white-bg {
		  color: #9F2F0E;
		}

		.hero h1 {
			font-size: clamp(2rem, 5vw, 3rem);
			font-weight: 800;
			line-height: 1.1;
			letter-spacing: -0.02em;
			color: #fff;
			margin-bottom: 16px;
		}

		.hero h1 .accent {
			color: #79f7e3;
		}

		.hero p {
			font-size: 1.1rem;
			line-height: 1.6;
			color: rgba(255, 255, 255, 0.9);
			max-width: 560px;
		}

		nav {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 0 40px;
			height: 72px;
			background: transparent;
			z-index: 10;
			transition: background 0.3s ease, box-shadow 0.3s ease;
		}

		.nav-brand {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 1.5rem;
			font-weight: 700;
			/*color: #2a6a3f;*/
			color: white;
			text-decoration: none;
			white-space: nowrap;
			position: relative;
			z-index: 12;
		}

		.gradient_header {
			background: linear-gradient(135deg, #C22A1A 0%, #ED9A1A 100%) !important;
    		-webkit-background-clip: text !important;
    		background-clip: text !important;
    		-webkit-text-fill-color: transparent !important;
    		color: #ED9A1A !important;
    		display: inline-block !important;
		}

		.header_subtext {
			font-size: 0.75rem;
    		font-weight: 700;
    		letter-spacing: 2.5px;
    		text-transform: uppercase;
    		color: #999;
    		margin-top: 2px;
		}

		.nav-logo {
			height: 44px;
			width: 44px;
			object-fit: contain;
			border-radius: 50%;
		}

		.nav-links {
			display: flex;
			gap: 32px;
			list-style: none;
		}

		.nav-links a {
			text-decoration: none;
			/*color: #333;*/
			color: white;
			font-size: 1rem;
			font-weight: 700;
			transition: color 0.2s, opacity 0.2s;
		}

		.nav-links a:hover {
			opacity: 0.75;
		}

		.nav-link-active {
			color: #F15A24 !important;
			border-bottom: 2px solid #F15A24;
			padding-bottom: 2px;
		}

		.nav-right {
			display: flex;
			align-items: center;
			gap: 16px;
		}

		.nav-panel {
			display: contents;
		}

		.nav-socials {
			display: contents;
		}

		.nav-overlay {
			position: fixed;
			top: 0;
			left: 0;
			right: 33vw;
			bottom: 0;
			background: rgba(0, 0, 0, 0.35);
			z-index: 8;
			cursor: pointer;
		}

		/* Hamburger button */
		.nav-hamburger {
			display: none;
			flex-direction: column;
			justify-content: center;
			gap: 6px;
			width: 44px;
			height: 44px;
			background: none;
			border: none;
			cursor: pointer;
			padding: 8px;
			z-index: 11;
		}

		.nav-hamburger-bar {
			display: block;
			width: 24px;
			height: 2px;
			background: #fff;
			border-radius: 2px;
			transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
		}

		nav.nav-open .nav-hamburger-bar:nth-child(1) {
			transform: translateY(8px) rotate(45deg);
		}
		nav.nav-open .nav-hamburger-bar:nth-child(2) {
			opacity: 0;
		}
		nav.nav-open .nav-hamburger-bar:nth-child(3) {
			transform: translateY(-8px) rotate(-45deg);
		}


		/* Mobile nav panel */
		@media (max-width: 1024px) {
			.header_subtext {
				display: block;
				font-size: 0.75rem;
			}

			.nav-panel {
				display: none;
			}

			.nav-hamburger {
				display: flex;
			}

			nav.nav-open .nav-panel {
				display: flex;
				flex-direction: column;
				align-items: center;
				position: fixed;
				top: 0;
				right: 0;
				width: 33vw;
				bottom: 0;
				background: #fff;
				z-index: 9;
				padding-top: 96px;
				padding-left: 36px;
				padding-right: 36px;
				padding-bottom: 36px;
				overflow-y: auto;
			}

			nav.nav-open .nav-links {
				display: flex;
				flex-direction: column;
				align-items: center;
				list-style: none;
				gap: 0;
			}

			nav.nav-open .nav-links li {
				padding: 9px 0;
			}

			nav.nav-open .nav-links a {
				display: inline-block;
				color: #111 !important;
				font-size: 1rem;
				font-weight: 600;
				letter-spacing: 0.08em;
				text-transform: uppercase;
			}

nav.nav-open .nav-links a:hover {
				color: #F15A24 !important;
				opacity: 1;
			}

			nav.nav-open .nav-links .nav-link-active {
				color: #F15A24 !important;
			}

			nav.nav-open .nav-right {
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 18px;
				padding-top: 9px;
			}

			nav.nav-open .nav-socials {
				display: flex;
				flex-direction: row;
				gap: 16px;
				align-items: center;
			}

			nav.nav-open .nav-right .nav-social {
				color: #111 !important;
				font-size: 1.5rem;
			}

			nav.nav-open .nav-right .nav-cta {
				padding: 14px 32px;
				font-size: 1rem;
			}
		}

		/* Nav scale-down: hamburger menu link text */
		@media (max-width: 660px) {
			nav.nav-open .nav-links a {
				font-size: 0.9rem;
			}
		}

		/* Nav scale-down: wider hamburger panel, smaller text */
		@media (max-width: 594px) {
			nav.nav-open .nav-panel {
				width: 55vw;
			}

			nav.nav-open .nav-links a {
				font-size: 0.85rem;
			}
		}

		/* Nav scale-down: even wider hamburger panel, smaller text */
		@media (max-width: 354px) {
			nav.nav-open .nav-panel {
				width: 65vw;
			}

			nav.nav-open .nav-links a {
				font-size: 0.8rem;
			}
		}

		/* Nav scale-down: small phones */
		@media (max-width: 550px) {
			.nav-brand {
				font-size: 0.8rem;
				gap: 6px;
			}
			.nav-logo {
				height: 24px;
				width: 24px;
			}
			.header_subtext {
				font-size: 0.55rem;
				letter-spacing: 1.5px;
			}
		}

		/* Nav scale-down: extra-small phones */
		@media (max-width: 400px) {
			.nav-brand {
				font-size: 0.7rem;
				gap: 5px;
				min-width: 0;
			}
			.nav-title {
				min-width: 0;
			}
			.nav-logo {
				height: 20px;
				width: 20px;
				flex-shrink: 0;
			}
			.header_subtext {
				font-size: 0.48rem;
				letter-spacing: 1px;
				white-space: normal;
			}
		}

		.nav-social {
			color: #fff;
			font-size: 1.56rem;
			transition: color 0.2s, opacity 0.2s;
			text-decoration: none;
		}

		.nav-social:hover {
			opacity: 0.75;
		}

		.nav-cta {
			display: inline-flex;
			align-items: center;
			gap: 6px;
			padding: 14px 32px;
			background: linear-gradient(135deg, #C22A1A 0%, #ED9A1A 100%);
			color: #fff;
			text-decoration: none;
			border-radius: 999px;
			font-size: 1rem;
			font-weight: 700;
			white-space: nowrap;
			transition: opacity 0.2s;
		}

		.nav-cta:hover {
			opacity: 0.88;
		}

		/* Nav scale-down: 1025px–1425px */
		@media (max-width: 1425px) {
			nav {
				height: 58px;
				padding: 0 32px;
			}
			.nav-brand {
				font-size: 1.2rem;
				gap: 8px;
			}
			.nav-logo {
				height: 35px;
				width: 35px;
			}
			.header_subtext {
				font-size: 0.6rem;
			}
			.nav-links {
				gap: 26px;
			}
			.nav-links a {
				font-size: 0.8rem;
			}
			.nav-right {
				gap: 13px;
			}
			.nav-social {
				font-size: 1.25rem;
			}
			.nav-cta {
				padding: 11px 26px;
				font-size: 0.8rem;
			}

		}

		/* Nav scale-down: 1025px–1210px */
		@media (max-width: 1210px) {
			nav {
				height: 46px;
				padding: 0 26px;
			}
			.hero {
				padding-top: 12.5%;
				padding-bottom: 14%;
			}
			.nav-brand {
				font-size: 0.95rem;
				gap: 6px;
			}
			.nav-logo {
				height: 28px;
				width: 28px;
			}
			.header_subtext {
				display: none;
			}
			.nav-links {
				gap: 20px;
			}
			.nav-links a {
				font-size: 0.7rem;
			}
			.nav-right {
				gap: 10px;
			}
			.nav-social {
				font-size: 1rem;
			}
			.nav-cta {
				padding: 9px 18px;
				font-size: 0.7rem;
			}
		}

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

		/* Contact Section */
		.contact-section {
			display: flex;
			gap: 60px;
			max-width: 1100px;
			margin: 60px auto;
			padding: 0 40px;
			align-items: flex-start;
		}

		/* Direct Contact */
		.contact-info {
			flex: 0 0 280px;
			padding-top: 36px;
		}

		.hidden {
			display: none;
		}

		.contact-info h2 {
			font-size: 1.4rem;
			font-weight: 700;
			color: #1a1a1a;
			margin-bottom: 24px;
		}

		.info-section-label {
			display: block;
			font-size: 0.7rem;
			font-weight: 700;
			letter-spacing: 0.15em;
			text-transform: uppercase;
			color: #9F2F0E;
			margin-bottom: 14px;
		}

		.info-section-label--spaced {
			margin-top: 32px;
		}

		.badge.badge-phone {
			display: flex;
			align-items: center;
			gap: 14px;
		}

		.badge-icon-lg {
			flex-shrink: 0;
			width: 56px;
			height: 56px;
			border-radius: 50%;
			background: #e8f5f0;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #00685c;
			font-size: 1.5rem;
		}

		.phone-number {
			font-size: 1.45rem;
			font-weight: 800;
			color: #1a4a3a;
			text-decoration: none;
			letter-spacing: -0.01em;
			line-height: 1.2;
			transition: color 0.2s;
		}

		.phone-number:hover {
			color: #F15A24;
		}

		.badges {
			display: flex;
			flex-direction: column;
			gap: 28px;
		}

		.badge {
			display: flex;
			align-items: flex-start;
			gap: 14px;
		}

		.badge-icon {
			flex-shrink: 0;
			width: 42px;
			height: 42px;
			border-radius: 50%;
			background: #e8f5f0;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #00685c;
			font-size: 1.1rem;
		}

		.badge-text {
			display: flex;
			flex-direction: column;
			gap: 2px;
		}

		.badge-text strong, .badge-text a {
			font-size: 0.9rem;
			font-weight: 700;
			color: #1a4a3a;
		}

		.badge-text a {
			text-decoration: none;
			transition: color 0.2s;
			font-size: 1.2rem;
		}

		.badge-text span {
			font-size: 0.82rem;
			color: #666;
			text-decoration: none;
		}

		/* Form */
		.contact-form {
			flex: 1;
			background: #f0faf6;
			border: 1px solid #d4e8e0;
			border-radius: 12px;
			padding: 36px;
			position: relative;
		}

		.contact-form h2 {
			font-size: 1.4rem;
			font-weight: 700;
			color: #1a1a1a;
			margin-bottom: 24px;
		}

		.form-row {
			display: flex;
			gap: 16px;
			margin-bottom: 16px;
		}

		.form-group {
			display: flex;
			flex-direction: column;
			gap: 6px;
			flex: 1;
		}

		.form-group label {
			font-size: 0.85rem;
			font-weight: 600;
			color: #1a1a1a;
		}

		.form-group label.req::after {
			content: ' *';
			color: #e53e3e;
		}

		.form-group input,
		.form-group select,
		.form-group textarea {
			padding: 11px 14px;
			border: none;
			border-radius: 6px;
			font-size: 0.9rem;
			color: #fff;
			background: #2d2d2d;
			outline: none;
			font-family: 'Sora', sans-serif;
			transition: background 0.2s;
		}

		.form-group input::placeholder,
		.form-group textarea::placeholder {
			color: #888;
		}

		.form-group select {
			color: #ccc;
			cursor: pointer;
			accent-color: #F15A24;
		}

		.form-group select option {
			background: #2d2d2d;
			color: #fff;
		}

		.form-group input:focus,
		.form-group select:focus,
		.form-group textarea:focus {
			background: #383838;
			box-shadow: 0 0 0 2px #F15A24, 0 0 10px rgba(241, 90, 36, 0.25);
		}

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

		.form-submit {
			display: block;
			margin: 35px auto 0;
			padding: 14px 40px;
			background: linear-gradient(135deg, #C22A1A 0%, #ED9A1A 100%);
			color: #fff;
			border: none;
			border-radius: 999px;
			font-size: 0.88rem;
			font-weight: 700;
			letter-spacing: 0.05em;
			text-transform: uppercase;
			cursor: pointer;
			font-family: 'Sora', sans-serif;
			transition: opacity 0.2s;
		}

		.form-submit:hover {
			opacity: 0.8;
		}

		@media (max-width: 990px) {
			.contact-section {
				gap: 36px;
				padding: 0 24px;
				margin: 44px auto;
			}

			.contact-info {
				flex-basis: 220px;
				padding-top: 0;
			}

			.contact-info h2,
			.contact-form h2 {
				font-size: 1.2rem;
				margin-bottom: 18px;
			}

			.phone-number {
				font-size: 1.2rem;
			}

			.badge-icon-lg {
				width: 46px;
				height: 46px;
				font-size: 1.25rem;
			}

			.badges {
				gap: 20px;
			}

			.badge-icon {
				width: 36px;
				height: 36px;
				font-size: 0.95rem;
			}

			.badge-text strong,
			.badge-text a {
				font-size: 0.82rem;
			}

			.badge-text span {
				font-size: 0.76rem;
			}

			.contact-form {
				padding: 24px;
			}
		}

		@media (max-width: 850px) {
			.contact-section {
				gap: 24px;
				padding: 0 20px;
				margin: 36px auto;
			}

			.contact-info {
				flex-basis: 190px;
			}

			.contact-info h2,
			.contact-form h2 {
				font-size: 1.05rem;
				margin-bottom: 14px;
			}

			.info-section-label {
				font-size: 0.62rem;
				margin-bottom: 10px;
			}

			.info-section-label--spaced {
				margin-top: 22px;
			}

			.phone-number {
				font-size: 1.05rem;
			}

			.badge-icon-lg {
				width: 38px;
				height: 38px;
				font-size: 1.05rem;
			}

			.badges {
				gap: 14px;
			}

			.badge-icon {
				width: 30px;
				height: 30px;
				font-size: 0.82rem;
			}

			.badge-text strong,
			.badge-text a {
				font-size: 0.74rem;
			}

			.badge-text span {
				font-size: 0.68rem;
			}

			.contact-form {
				padding: 18px;
			}

			.form-row {
				gap: 10px;
				margin-bottom: 10px;
			}

			.form-group input,
			.form-group select,
			.form-group textarea {
				padding: 9px 11px;
				font-size: 0.82rem;
			}
		}

		@media (max-width: 782px) {
			.form-row {
				flex-direction: column;
			}

			.contact-section {
				flex-direction: column;
				align-items: stretch;
			}

			.contact-info {
				order: 1;
				flex-basis: auto;
				text-align: center;
			}

			.badge-phone {
				justify-content: center;
				align-items: center;
			}

			.info-section-label {
				font-size: 0.75rem;
			}

			.phone-number {
				font-size: 1.35rem;
			}

			.badge-text strong,
			.badge-text a {
				font-size: 0.88rem;
			}

			.badge-text span {
				font-size: 0.8rem;
			}

			.badges {
				display: block;
				column-count: 2;
				column-gap: 20px;
				width: fit-content;
				margin: 0 auto;
				text-align: left;
			}

			.badges .badge {
				justify-content: flex-start;
				break-inside: avoid;
				margin-bottom: 20px;
			}

			.contact-form {
				order: 0;
			}
		}

		@media (max-width: 475px) {
			.badges {
				column-count: 1;
				width: auto;
				text-align: center;
			}

			.badges .badge {
				flex-direction: column;
				align-items: center;
				text-align: center;
			}
		}

		/* Service Area Section */
		.service-area {
			/* background: linear-gradient(180deg, #070f09 0%, #001208 100%); */
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
			padding: 80px 40px;
			text-align: center;
		}

		.service-area-inner {
			max-width: 1100px;
			margin: 0 auto;
		}

		.label-row--center {
			justify-content: center;
		}

		.label-row--center::after {
			content: '';
			display: inline-block;
			width: 32px;
			height: 2px;
			background: #F15A24;
			flex-shrink: 0;
		}

		.service-area-heading {
			font-size: clamp(2rem, 5vw, 3.2rem);
			font-weight: 800;
			color: #fff;
			letter-spacing: -0.02em;
			line-height: 1.1;
			margin-bottom: 16px;
		}

		.service-area-sub {
			font-size: 1rem;
			color: rgba(255, 255, 255, 0.6);
			max-width: 520px;
			margin: 0 auto 48px;
			line-height: 1.7;
		}

		.service-area-map-wrap {
			border-radius: 12px;
			overflow: hidden;
			border: 1px solid rgba(255, 255, 255, 0.08);
			box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
		}

		.service-area-map-img {
			width: 100%;
			display: block;
		}

		/* Process Section */
		.process-section {
			background: #fff;
			padding: 80px 40px;
			text-align: center;
		}

		.process-inner {
			max-width: 1100px;
			margin: 0 auto;
		}

		.process-heading {
			font-size: clamp(2rem, 5vw, 3.2rem);
			font-weight: 800;
			color: #1a1a1a;
			letter-spacing: -0.02em;
			line-height: 1.1;
			margin-bottom: 16px;
		}

		.process-sub {
			font-size: 1rem;
			color: #666;
			max-width: 480px;
			margin: 0 auto 60px;
			line-height: 1.7;
		}

		.process-steps {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			position: relative;
			gap: 24px;
		}

		/* Connecting line drawn through center of circles */
		.process-steps::before {
			content: '';
			position: absolute;
			top: 40px;
			left: 40px;
			right: 40px;
			height: 2px;
			background: #d4e8e0;
			z-index: 0;
		}

		.process-step {
			flex: 1;
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			position: relative;
			z-index: 1;
		}

		.step-circle {
			width: 80px;
			height: 80px;
			border-radius: 50%;
			border: 2px solid #00685c;
			background: #fff;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 24px;
			position: relative;
			z-index: 1;
			transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
			cursor: default;
		}

		.step-circle:hover {
			border-color: #F15A24;
			box-shadow: 0 0 0 8px rgba(241, 90, 36, 0.18), 0 0 32px rgba(241, 90, 36, 0.6);
			transform: scale(1.06);
		}

		.step-num {
			font-size: 1.35rem;
			font-weight: 800;
			background: linear-gradient(135deg, #C22A1A 0%, #ED9A1A 100%);
			-webkit-background-clip: text;
			background-clip: text;
			-webkit-text-fill-color: transparent;
			letter-spacing: -0.01em;
		}

		.step-title {
			font-size: 0.88rem;
			font-weight: 800;
			color: #1a1a1a;
			letter-spacing: 0.06em;
			margin-bottom: 12px;
		}

		.step-desc {
			font-size: 0.85rem;
			color: #666;
			line-height: 1.75;
			max-width: 220px;
		}

		.process-section--dark {
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
		}
		.process-section--dark .process-heading {
			color: #fff;
		}
		.process-section--dark .process-sub {
			color: rgba(255, 255, 255, 0.75);
		}
		.process-section--dark .process-steps::before {
			background: rgba(255, 255, 255, 0.2);
		}
		.process-section--dark .step-circle {
			background: transparent;
			border-color: #fff;
		}
		.process-section--dark .process-steps::before {
			display: none;
		}
		.process-section--dark .process-step:not(:last-child)::after {
			content: '';
			position: absolute;
			top: 39px;
			left: calc(50% + 40px);
			width: calc(100% - 56px);
			height: 2px;
			background: rgba(255, 255, 255, 0.3);
			z-index: 0;
		}
		.process-section--dark .step-title {
			color: #fff;
		}
		.process-section--dark .step-desc {
			color: rgba(255, 255, 255, 0.75);
		}

		@media (max-width: 636px) {
			.process-steps {
				display: grid;
				grid-template-columns: 1fr 1fr;
				row-gap: 48px;
			}
			.process-steps::before {
				display: none;
			}
			.process-section--dark .process-step:not(:last-child)::after {
				display: none;
			}
			.step-desc {
				max-width: none;
			}
		}

		@media (max-width: 600px) {
			.hero {
				padding-top: 15%;
			}
		}

		@media (max-width: 430px) {
			.process-steps {
				grid-template-columns: 1fr;
				row-gap: 40px;
			}
			.hero {
				padding-top: 18%;

			}
		}

		/* Footer */
		.site-footer {
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
		}

		.footer-accent-line {
			height: 3px;
			background: linear-gradient(90deg, #C22A1A 0%, #ED9A1A 100%);
		}

		.footer-main {
			max-width: 1628px;
			margin: 0 auto;
			padding: 60px 20px 48px;
			display: grid;
			grid-template-columns: auto 1.4fr 1fr 1fr 1fr 1fr;
			gap: 28px;
			align-items: start;
		}

		.footer-logo-col {
			display: flex;
			align-items: flex-start;
			padding-top: 4px;
		}

		.footer-logo-img {
			width: 156px;
			height: 156px;
			object-fit: contain;
			border-radius: 50%;
		}

		.footer-brand-name {
			font-size: 1.5rem;
			font-weight: 700;
			line-height: 1.2;
			white-space: nowrap;
		}

		.footer-wordmark {
			color: #fff;
			font-weight: 700;
			font-size: 1.5rem;
		}

		.footer-subtext {
			color: rgba(255, 255, 255, 0.5) !important;
		}

		.footer-desc {
			font-size: 0.875rem;
			color: rgba(255, 255, 255, 0.55);
			line-height: 1.8;
			max-width: 280px;
			margin-bottom: 24px;
		}

		.footer-star-col {
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			grid-column: 1 / -1;
			padding-top: 24px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
		}

		.footer-star-body {
			display: flex;
			flex-direction: row;
			align-items: center;
			justify-content: center;
			gap: 24px;
		}

		.footer-star-title {
			font-size: 1.5rem;
			font-weight: 700;
			letter-spacing: 0.14em;
			color: #FFCC01;
			margin-bottom: 12px;
			line-height: 1.2;
		}

		.footer-star-text {
			font-size: 0.875rem;
			color: rgba(255, 255, 255, 0.55);
			line-height: 1.8;
			max-width: 280px;
			text-align: left;
		}

		.footer-socials {
			margin-top: 20px;
			display: flex;
			gap: 14px;
		}

		.footer-socials a {
			color: rgba(255, 255, 255, 0.55);
			font-size: 1.3rem;
			text-decoration: none;
			transition: color 0.2s;
		}

		.footer-socials a:hover {
			color: #fff;
		}

		.footer-col-title {
			font-size: 0.72rem;
			font-weight: 800;
			letter-spacing: 0.14em;
			color: #fff;
			margin-bottom: 20px;
		}

		.footer-links {
			list-style: none;
			display: flex;
			flex-direction: column;
			gap: 12px;
		}

		.footer-links a,
		.footer-links span {
			font-size: 0.875rem;
			color: rgba(255, 255, 255, 0.55);
			text-decoration: none;
			transition: color 0.2s;
		}

		.footer-links a:hover {
			color: #fff;
		}

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

		.footer-bottom-inner {
			max-width: 1280px;
			margin: 0 auto;
			padding: 22px 40px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			font-size: 0.78rem;
			color: rgba(255, 255, 255, 0.4);
		}

		.footer-credit-link {
			color: rgba(255, 255, 255, 0.6);
			text-decoration: none;
			transition: color 0.2s;
		}

		.footer-credit-link:hover {
			color: #fff;
		}

		/* Footer scale-down */
		@media (max-width: 1399px) {
			.footer-main {
				gap: 20px;
			}
			/*.footer-logo-img {
				width: 80px;
				height: 80px;
			}*/
			.footer-brand-name {
				font-size: 1.1rem;
				white-space: normal;
			}
			.footer-wordmark {
				font-size: 1.1rem;
			}
			.footer-star-title {
				font-size: 1.1rem;
			}
		}

		/* Footer reflow: logo+brand left, 4 link cols right, veteran proud on new row */
		@media (max-width: 1255px) {
			.footer-main {
				grid-template-columns: auto 1.5fr 1fr 1fr 1fr 1fr;
			}
			.footer-star-body svg {
				width: 120px;
				height: 120px;
			}
		}

		/* Footer: on wide desktop, merge Veteran Proud into the column row instead of its own stacked row */
		@media (min-width: 1256px) {
			.footer-main {
				grid-template-columns: auto 1.2fr 1fr 1fr 1fr 1fr 1.2fr;
			}
			.footer-star-col {
				grid-column: 7;
				border-top: none;
				padding-top: 0;
				align-items: flex-start;
				text-align: left;
			}
			.footer-star-body {
				flex-direction: column;
				align-items: flex-start;
				gap: 12px;
			}
			.footer-star-body svg {
				width: 56px;
				height: 56px;
				align-self: center;
			}
			.footer-star-title {
				text-align: center;
			}
			.footer-star-text {
				text-align: left;
			}
		}

		/* Footer: centered link columns (also applies on mobile) */
		@media (max-width: 1024px) {
			.footer-desc {
				max-width: 100%;
			}
			.footer-col:not(.footer-star-col) {
				text-align: center;
				padding-top: 24px;
			}
			.footer-links {
				align-items: center;
			}
			.footer-socials {
				justify-content: center;
			}
		}

		/* Footer 769px–1024px: logo+brand centered on row 1, link cols centered on row 2 */
		@media (min-width: 769px) and (max-width: 1024px) {
			.footer-main {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				align-items: flex-start;
				column-gap: 28px;
				row-gap: 0;
			}
			.footer-main::before,
			.footer-main::after {
				content: "";
				flex-basis: 100%;
			}
			.footer-main::before {
				order: 1;
				border-top: 1px solid rgba(255, 255, 255, 0.1);
				margin-top: 28px;
			}
			.footer-main::after {
				order: 3;
			}
			.footer-brand {
				max-width: 260px;
			}
			.footer-col:not(.footer-star-col) {
				order: 2;
				min-width: 150px;
			}
			.footer-star-col {
				order: 4;
				width: 100%;
				margin-top: 28px;
			}
			.footer-logo-img {
				width: 128px;
				height: 128px;
			}
		}

		/* Color Chart */
		.color-chart-section {
			background: #f5f5f3;
			padding: 64px 40px;
		}

		.color-chart-inner {
			max-width: 1280px;
			margin: 0 auto;
		}

		.color-chart-tabs {
			display: flex;
			gap: 10px;
			flex-wrap: wrap;
			justify-content: center;
			margin-bottom: 40px;
		}

		.color-tab {
			font-family: 'Sora', sans-serif;
			font-size: 0.85rem;
			font-weight: 800;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			padding: 10px 22px;
			border: 2px solid #ddd;
			border-radius: 4px;
			background: #fff;
			color: #444;
			cursor: pointer;
			transition: background 0.2s, border-color 0.2s, color 0.2s;
		}

		.color-tab:hover {
			border-color: #9F2F0E;;
			color: #9F2F0E;
		}

		.color-tab.active {
			background: #9F2F0E;
			border-color: #9F2F0E;
			color: #fff;
		}

		@media (max-width: 670px) {
			.color-chart-tabs {
				gap: 8px;
			}

			.color-tab {
				font-size: 0.7rem;
				padding: 8px 14px;
			}
		}

		@media (max-width: 543px) {
			.color-chart-tabs {
				gap: 6px;
			}

			.color-tab {
				font-size: 0.62rem;
				padding: 7px 10px;
			}
		}

		@media (max-width: 475px) {
			.color-chart-tabs {
				gap: 5px;
			}

			.color-tab {
				font-size: 0.55rem;
				padding: 6px 8px;
			}
		}

		@media (max-width: 425px) {
			.color-chart-tabs {
				flex-direction: column;
				align-items: stretch;
				gap: 8px;
			}

			.color-tab {
				font-size: 0.8rem;
				padding: 10px 14px;
			}
		}

		.color-chart-panel {
			display: none;
		}

		.color-chart-panel.active {
			display: block;
		}

		.color-chart-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 24px;
		}

		@media (max-width: 671px) {
			.color-chart-grid {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 409px) {
			.color-chart-grid {
				grid-template-columns: 1fr;
			}
		}

		.color-card {
			background: #fff;
			border-radius: 6px;
			overflow: hidden;
			box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
			transition: transform 0.2s, box-shadow 0.2s;
		}

		.color-card:hover {
			transform: translateY(-3px);
			box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
		}

		.color-card-swatch {
			display: block;
			width: 100%;
			aspect-ratio: 4 / 3;
			background: #111;
			object-fit: cover;
		}

		.color-card-label {
			padding: 12px 16px;
			font-size: 0.85rem;
			font-weight: 700;
			letter-spacing: 0.06em;
			text-transform: uppercase;
			text-align: center;
			color: #221F20;
		}


		.flake-more-row {
			text-align: center;
			margin-top: 32px;
			font-size: 1rem;
			color: #555;
		}

		.flake-more-link {
			color: #9F2F0E !important;
			-webkit-background-clip: text;
			background-clip: text;
			font-weight: 700;
			text-decoration: none;
			white-space: nowrap;
		}

		.flake-more-link:hover {
			text-decoration: underline;
		}

		/* Not Sure Where to Start */
		.help-section {
			background: #fff;
			padding: 80px 40px;
			text-align: center;
		}

		.help-section-inner {
			max-width: 860px;
			margin: 0 auto;
		}

		.help-section-inner h2 {
			font-size: clamp(1.8rem, 4vw, 2.8rem);
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #1a1a1a;
			margin-bottom: 20px;
		}

		.help-section-inner > p {
			font-size: 1.05rem;
			line-height: 1.7;
			color: #555;
			max-width: 620px;
			margin: 0 auto 48px;
		}

		.help-cards {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 24px;
			margin-bottom: 48px;
			text-align: left;
		}

		.help-card {
			background: #2d2d2d;
			border-radius: 10px;
			padding: 22px 18px;
			color: #fff;
			text-align: center;
			position: relative;
			overflow: hidden;
			border: 1px solid transparent;
			transition: transform 0.2s ease, border-color 0.3s ease;
		}
		.help-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 0;
			height: 3px;
			background: linear-gradient(90deg, #C22A1A 0%, #ED9A1A 100%);
			transition: width 0.3s ease;
		}
		.help-card:hover::before {
			width: 100%;
		}
		.help-card:hover {
			transform: translateY(-4px);
			border-color: #F15A24;
		}

		.help-card-icon {
			width: 48px;
			height: 48px;
			border-radius: 50%;
			background: rgba(0, 104, 92, 0.25);
			display: flex;
			align-items: center;
			justify-content: center;
			color: #79f7e3;
			font-size: 1.3rem;
			margin: 0 auto 16px;
		}

		.help-card-category {
			font-size: 0.8rem;
			font-weight: 700;
			letter-spacing: 0.06em;
			text-transform: uppercase;
			color: #F4A790;
			margin-bottom: 12px;
		}

		.help-card p {
			font-size: 0.95rem;
			line-height: 1.6;
			color: rgba(255, 255, 255, 0.78);
		}

		@media (max-width: 627px) {
			#what-we-do .help-cards,
			#what-we-coat .help-cards,
			#who-we-are .help-cards,
			#here-to-help .help-cards {
				grid-template-columns: 1fr;
				max-width: 60%;
				margin-left: auto;
				margin-right: auto;
			}
		}

		@media (max-width: 420px) {
			#what-we-do .help-cards,
			#what-we-coat .help-cards,
			#who-we-are .help-cards,
			#here-to-help .help-cards {
				max-width: 80%;
			}
		}

		.help-cta {
			font-size: 1rem;
			padding: 16px 36px;
			text-transform: uppercase;
			letter-spacing: 0.08em;
		}

		/* Choosing Your Finish — alternating split rows */
		.finish-split {
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
		}

		.finish-split-header {
			text-align: center;
			padding: 80px 40px 48px;
			max-width: 720px;
			margin: 0 auto;
		}

		.finish-split-header h2 {
			font-size: clamp(1.8rem, 4vw, 2.6rem);
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #fff;
			margin-bottom: 16px;
		}

		.finish-split-header p {
			font-size: 1.05rem;
			line-height: 1.7;
			color: rgba(255, 255, 255, 0.8);
		}

		.finish-row {
			display: flex;
			max-width: 1320px;
			margin: 0 auto;
			width: 100%;
			padding: 48px 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		}

		@media (min-width: 843px) and (max-width: 1389px) {
			.finish-row {
				padding-left: 24px;
				padding-right: 24px;
			}
		}

		.finish-row:last-of-type {
			border-bottom: none;
		}

		.finish-row--reverse {
			flex-direction: row-reverse;
		}

		.finish-row-img {
			flex: 0 0 460px;
			overflow: hidden;
			align-self: stretch;
			border-radius: 16px;
		}

		.finish-row-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
			border-radius: inherit;
		}

		.finish-row-text {
			flex: 1;
			display: flex;
			flex-direction: column;
			justify-content: center;
			padding: 56px 48px;
		}

		.finish-row-text h3 {
			font-size: clamp(1.8rem, 4vw, 2.8rem);
			font-weight: 800;
			letter-spacing: -0.01em;
			color: #fff;
			margin-bottom: 16px;
		}

		.finish-row-text p {
			font-size: 1rem;
			line-height: 1.75;
			color: rgba(255, 255, 255, 0.8);
			margin-bottom: 16px;
		}
		.finish-row-text p:last-child {
			margin-bottom: 0;
		}

		.finish-split-footer {
			text-align: center;
			padding: 56px 40px 80px;
		}

		/* Stacked finish rows: header + text centered, photo below */
		@media (max-width: 842px) {
			.finish-row, .finish-row--reverse { flex-direction: column; }
			.finish-row-text {
				order: 1;
				text-align: center;
				padding: 40px 28px;
			}
			.finish-row-text .label-row { justify-content: center; }
			.finish-row-img {
				order: 2;
				flex: 0 0 auto;
				aspect-ratio: 4/3;
				height: auto;
				margin: 0 28px;
				border-radius: 8px;
				overflow: hidden;
			}
		}

		@media (max-width: 768px) {
			/* Footer: 2-column grid, brand spans full width */
			.footer-main {
				grid-template-columns: 1fr 1fr;
				padding: 48px 24px 40px;
				gap: 32px;
			}
			.footer-logo-col {
				grid-column: 1 / -1;
				justify-content: center;
			}
			.footer-brand {
				grid-column: 1 / -1;
				text-align: center;
			}
			.footer-desc {
				max-width: 100%;
				margin-left: auto;
				margin-right: auto;
			}
			.footer-star-body {
				flex-direction: column;
				gap: 16px;
			}
			.footer-star-text {
				text-align: center;
			}
			.footer-bottom-inner {
				flex-direction: column;
				gap: 6px;
				text-align: center;
				padding: 20px 24px;
			}
		}

		/* Color Chart CTA */
		.chart-cta {
			background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
			padding: 80px 40px;
			text-align: center;
		}

		.chart-cta-inner {
			max-width: 640px;
			margin: 0 auto;
		}

		.chart-cta-inner h2 {
			font-size: clamp(1.8rem, 4vw, 2.6rem);
			font-weight: 800;
			letter-spacing: -0.02em;
			color: #fff;
			margin-bottom: 16px;
		}

		.chart-cta-inner p {
			font-size: 1.05rem;
			line-height: 1.7;
			color: rgba(255, 255, 255, 0.8);
			margin-bottom: 36px;
		}

		.chart-cta-btn {
			font-size: 1rem;
			padding: 16px 36px;
		}

		@media (max-width: 400px) {
			.chart-cta-btn {
				font-size: 0.85rem;
				padding: 12px 24px;
			}
		}

		@media (max-width: 357px) {
			.chart-cta .label-text {
				font-size: 9px;
				letter-spacing: 0.1em;
			}

			.chart-cta .label-row::before,
			.chart-cta .label-row::after {
				width: 20px;
			}
		}

		@media (min-width: 1880px) {
			.hero {
				height: 40vh;
			}
		}

		@media (min-width: 2200px) {
			.hero {
				height: 35vh;
			}
		}

		@media (min-width: 2500px) {
			.hero {
				height: 25vh;
			}
		}

		/* sora-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/sora-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/sora-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/sora-v17-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/sora-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/sora-v17-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Inline SVG icons (replaced Font Awesome / Tabler webfonts) */
.svg-icon {
	vertical-align: -0.125em;
	flex-shrink: 0;
}

/* FAQ page components (converted from Tailwind utilities) */
.faq-load-fade {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-xl);
	background-color: var(--color-surface);
}

.faq-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--margin-mobile);
	padding-right: var(--margin-mobile);
}

@media (min-width: 768px) {
	.faq-container {
		padding-left: var(--space-md);
		padding-right: var(--space-md);
	}
}

#faq-tabs-wrap {
	width: fit-content;
	margin: 0 auto 40px;
	border-bottom: 1px solid var(--color-outline-variant);
}

#faq-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}

/* Button resets Tailwind's preflight used to provide */
.faq-tab,
.faq-cat-header,
.faq-q {
	background: none;
	border: 0;
	font: inherit;
	cursor: pointer;
}

.faq-tab {
	padding: var(--space-md) var(--gutter);
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 0.2s;
}

.faq-cat-header {
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding: var(--space-md);
	margin-bottom: 8px;
	border-radius: 8px;
	background-color: var(--color-surface-container-low);
	text-align: left;
	font-family: 'Sora', sans-serif;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--color-on-surface);
}

.faq-q {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding: var(--space-md) 0;
	text-align: left;
}

.faq-icon,
.faq-cat-icon {
	color: var(--color-secondary);
	font-weight: 300;
	font-size: 24px;
	line-height: 1;
	flex-shrink: 0;
}

.faq-q-text {
	font-family: 'Sora', sans-serif;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--color-on-surface);
}

.faq-a-text {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	color: var(--color-on-surface-variant);
	padding-bottom: var(--space-md);
	max-width: 48rem;
}

ul.faq-a-text {
	list-style: none;
}

ul.faq-a-text > li + li {
	margin-top: var(--space-sm);
}

.faq-accordion-group > * + * {
	border-top: 1px solid var(--color-outline-variant);
}

/* ==================== Home page (index.html) ==================== */
	@keyframes marquee {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}

	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}

	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p,
	.hero-content .home-hero-ctas {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row   { animation-delay: 0.1s; }
	.hero-content h1           { animation-delay: 0.3s; }
	.hero-content > p          { animation-delay: 0.5s; }
	.hero-content .home-hero-ctas { animation-delay: 0.7s; }

	/* Hero */
	.home-hero-ctas {
		display: flex;
		gap: 16px;
		margin-top: 28px;
		flex-wrap: wrap;
		align-items: center;
	}
	.cta-stable {
		padding: 14px 32px;
		font-size: 1rem;
	}
	.home-cta-outline {
		font-family: Sora, sans-serif;
		font-size: 0.875rem;
		font-weight: 700;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		color: #fff;
		border: 2px solid rgba(255,255,255,0.6);
		padding: 14px 28px;
		border-radius: 4px;
		text-decoration: none;
		transition: border-color 0.2s, background 0.2s;
	}
	.home-cta-outline:hover {
		border-color: #fff;
		background: rgba(255,255,255,0.1);
	}
	@media (max-width: 567px) {
		.home-hero-ctas .nav-cta,
		.home-hero-ctas .home-cta-outline {
			padding: 10px 20px;
			font-size: 0.8rem;
		}
		.home-hero-ctas .home-cta-outline {
			padding: 8px 16px;
			font-size: 0.64rem;
		}
		.hero-content {
			text-align: center;
		}
		.hero-content .label-row {
			justify-content: center;
		}
		.home-hero-ctas {
			justify-content: center;
		}
	}

	@media (max-width: 366px) {
		.color-chart-cta-wrap {
			text-align: center;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}

	@media (max-width: 480px) {
		.review-all-cta {
			white-space: normal;
			text-align: center;
		}
	}


	/* Ticker */
	.home-ticker {
		background: #00210c;
		padding: 12px 0;
		overflow: hidden;
		white-space: nowrap;
	}
	.home-ticker-inner {
		display: inline-flex;
		gap: 56px;
		animation: marquee 32s linear infinite;
	}
	.home-ticker-item {
		font-family: Sora, sans-serif;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: rgba(255,255,255,0.8);
		flex-shrink: 0;
	}

	/* Intro text link */
	.home-text-link {
		display: inline-block;
		margin-top: 8px;
		font-family: Sora, sans-serif;
		font-size: 0.9rem;
		font-weight: 700;
		color: #a93200;
		text-decoration: none;
		letter-spacing: 0.02em;
	}
	.home-text-link:hover { text-decoration: underline; }

	/* Finish Tiles */
	.finish-tiles {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.finish-tile {
		position: relative;
		border-radius: 8px;
		overflow: hidden;
		display: block;
		text-decoration: none;
		aspect-ratio: 4/3;
	}
	.finish-tile img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.4s ease;
	}
	.finish-tile:hover img { transform: scale(1.05); }
	.finish-tile-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(0,33,12,0.88) 0%, rgba(0,33,12,0.15) 60%, transparent 100%);
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 24px 20px;
	}
	.finish-tile-label {
		font-family: Sora, sans-serif;
		font-size: 0.65rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #F15A24;
		margin-bottom: 6px;
	}
	.finish-tile h3 {
		font-family: Sora, sans-serif;
		font-size: 1.15rem;
		font-weight: 800;
		color: #fff;
		margin-bottom: 6px;
	}
	.finish-tile p {
		font-family: Sora, sans-serif;
		font-size: 0.82rem;
		color: rgba(255,255,255,0.8);
		line-height: 1.5;
		margin: 0;
	}

	/* Review Cards */
	.review-cards {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.review-card {
		background: #fff;
		border: 1px solid #e7e8e9;
		border-radius: 8px;
		padding: 28px 24px;
		display: flex;
		flex-direction: column;
		gap: 14px;
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}
	.review-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 32px rgba(0,0,0,0.12);
	}
	.review-stars {
		color: #F59E0B;
		font-size: 1rem;
		letter-spacing: 2px;
	}
	.review-text {
		font-family: Sora, sans-serif;
		font-size: 0.92rem;
		line-height: 1.75;
		color: #444;
		font-style: italic;
		flex: 1;
		margin: 0;
	}
	.review-footer {
		display: flex;
		flex-direction: column;
		gap: 4px;
		border-top: 1px solid #edeeef;
		padding-top: 14px;
	}
	.review-name {
		font-family: Sora, sans-serif;
		font-size: 0.85rem;
		font-weight: 700;
		color: #1a1a1a;
	}
	.review-verify {
		font-family: Sora, sans-serif;
		font-size: 0.75rem;
		color: #00685c;
		text-decoration: none;
		font-weight: 600;
	}
	.review-verify:hover { text-decoration: underline; }

	/* Mini Gallery */
	.mini-gallery {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	.gallery-item {
		border-radius: 6px;
		overflow: hidden;
		aspect-ratio: 4/3;
	}
	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.4s ease;
	}
	.gallery-item:hover img { transform: scale(1.04); }

	/* About Split */
	.about-split {
		background: #fff;
		padding: 80px 40px;
	}
	.about-split-inner {
		max-width: 1100px;
		margin: 0 auto;
		display: flex;
		gap: 64px;
		align-items: center;
	}
	.about-split-img {
		flex: 0 0 44%;
	}
	.about-split-img img {
		width: 100%;
		height: 480px;
		object-fit: cover;
		display: block;
		border-radius: 12px;
	}
	.about-split-img .founder-photo-wrap {
		position: relative;
		display: inline-block;
		width: 100%;
	}
	.about-split-img .about-founder-photo-frame {
		background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
		padding: 5px 5px 0px 5px;
		border-radius: 16px;
		display: inline-flex;
		width: 100%;
	}
	.about-split-img .about-founder-photo-frame img {
		border-radius: 12px;
	}
	.about-split-img .veteran-badge {
		position: absolute;
		top: 25px;
		left: 25px;
		background: #9F2F0E;;
		color: #fff;
		font-family: Sora, sans-serif;
		font-size: 0.65rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		padding: 6px 12px;
		border-radius: 100px;
		display: flex;
		align-items: center;
		gap: 6px;
		z-index: 2;
		box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	}
	.about-split-img .veteran-badge svg {
		font-size: 0.95rem;
	}
	@media (min-width: 769px) and (max-width: 966px) {
		#about-veteran-badge {
			left: 15%;
		}
	}
	.about-split-text { flex: 1; }
	.about-split-text h2 {
		font-family: Sora, sans-serif;
		font-size: clamp(1.8rem, 3.5vw, 2.6rem);
		font-weight: 800;
		letter-spacing: -0.02em;
		color: #1a1a1a;
		margin-bottom: 20px;
		line-height: 1.15;
	}
	.about-split-text p {
		font-family: Sora, sans-serif;
		font-size: 1rem;
		line-height: 1.75;
		color: #555;
	}

	/* FAQ Preview */
	.faq-preview {
		border: 1px solid #e7e8e9;
		border-radius: 8px;
		overflow: hidden;
		margin: 36px 0 0;
		text-align: left;
	}
	.faq-preview-item { border-bottom: 1px solid #e7e8e9; }
	.faq-preview-item:last-child { border-bottom: none; }
	.faq-preview-q {
		width: 100%;
		background: #fff;
		border: none;
		padding: 20px 24px;
		text-align: left;
		font-family: Sora, sans-serif;
		font-size: 0.95rem;
		font-weight: 700;
		color: #1a1a1a;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
		transition: background 0.15s;
	}
	.faq-preview-q:hover { background: #f8f9fa; }
	.faq-preview-icon {
		font-size: 1.4rem;
		font-weight: 300;
		color: #a93200;
		flex-shrink: 0;
		transition: transform 0.2s;
	}
	.faq-preview-item.open .faq-preview-icon { transform: rotate(45deg); }
	.faq-preview-a {
		max-height: 0;
		overflow: hidden;
		padding: 0 24px;
		background: #fff;
		transition: max-height 0.35s ease, padding 0.35s ease;
	}
	.faq-preview-item.open .faq-preview-a {
		max-height: 400px;
		padding: 0 24px 20px;
	}
	.faq-preview-a p {
		font-family: Sora, sans-serif;
		font-size: 0.9rem;
		line-height: 1.75;
		color: #555;
		margin: 0;
	}

	/* Final CTA phone link */
	.home-phone-link {
		font-family: Sora, sans-serif;
		font-size: 1.05rem;
		font-weight: 700;
		color: rgba(255,255,255,0.85);
		text-decoration: none;
	}
	.home-phone-link:hover { color: #fff; text-decoration: underline; }

	@media (max-width: 768px) {
		.finish-tiles, .review-cards { grid-template-columns: 1fr; }
		.mini-gallery { grid-template-columns: repeat(2, 1fr); }
		.about-split-inner { flex-direction: column; gap: 32px; }
		.about-split-img img { height: 260px; }
		.about-split-text { text-align: center; }
		.about-split-text .label-row { justify-content: center; }
	}

	@media (max-width: 450px) {
		.mini-gallery { grid-template-columns: 1fr; }
	}


	/* Scroll fade sections */
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	/* What We Do scroll fade */
	#what-we-do .label-row,
	#what-we-do h2,
	#what-we-do .help-section-inner > p,
	#what-we-do .help-cards,
	#what-we-do .help-section-inner > .nav-cta {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	#what-we-do.is-visible .label-row             { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
	#what-we-do.is-visible h2                     { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
	#what-we-do.is-visible .help-section-inner > p { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
	#what-we-do.is-visible .help-cards            { opacity: 1; transform: translateY(0); transition-delay: 0.85s; }
	#what-we-do.is-visible .help-section-inner > .nav-cta { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }

/* ==================== About page (about_us.html) ==================== */
	.about-founder {
		background: #fff;
		padding: 80px 24px;
	}
	.about-founder-inner {
		max-width: 960px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 56px;
		align-items: center;
	}
	.about-founder-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 20px;
	}
	.about-founder-text h2 {
		font-family: Sora, sans-serif;
		font-size: clamp(1.8rem, 3.5vw, 2.6rem);
		font-weight: 800;
		letter-spacing: -0.02em;
		color: #191c1d;
		line-height: 1.2;
	}
	.about-founder-text p {
		font-family: Sora, sans-serif;
		font-size: 1.05rem;
		line-height: 1.7;
		color: #444;
	}
	.about-founder-photo {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		overflow: hidden;
	}
	.about-founder-photo-frame {
		background: linear-gradient(135deg, #00210c 0%, #005047 60%, #00685c 100%);
		padding: 5px 5px 0px 5px;
		border-radius: 16px;
		display: inline-flex;
	}
	.about-founder-photo-frame img {
		max-height: 540px;
		width: auto;
		display: block;
		border-radius: 12px;
	}
	@media (max-width: 768px) {
		.about-founder-inner { grid-template-columns: 1fr; gap: 32px; }
		.about-founder-photo { min-height: 340px; }
		.about-founder { padding: 48px 24px; }
		.founder-photo-wrap { width: 100%; }
		.about-founder-photo-frame { width: 100%; }
		.about-founder-photo-frame img { max-height: none; width: 100%; height: auto; }
	}
	.about-quote {
		border-left: 4px solid rgba(255, 255, 255, 0.3);
		padding: 16px 28px;
		margin: 0 0 36px;
		text-align: left;
	}
	.about-quote p {
		font-family: Sora, sans-serif;
		font-size: 1.1rem;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
		font-style: italic;
		margin-bottom: 10px;
	}
	.about-quote cite {
		font-family: Sora, sans-serif;
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.55);
		font-style: normal;
	}
		.why-list {
			list-style: none;
			padding: 0;
			margin: 0 0 36px;
			text-align: left;
			display: flex;
			flex-direction: column;
			gap: 16px;
		}
		.why-list li {
			display: flex;
			align-items: flex-start;
			gap: 14px;
			font-size: 1.05rem;
			line-height: 1.6;
			color: rgba(255, 255, 255, 0.85);
		}
		.why-list li svg {
			color: #79f7e3;
			font-size: 1.3rem;
			flex-shrink: 0;
			margin-top: 2px;
		}
		.why-list li strong {
			color: #fff;
		}
		.chart-cta-light {
			background: #fff;
		}
		.chart-cta-light .chart-cta-inner h2 {
			color: #191c1d;
		}
		.chart-cta-light .chart-cta-inner p {
			color: #444;
		}
		.chart-cta-light .about-quote {
			border-left-color: #00685c;
		}
		.chart-cta-light .about-quote p {
			color: #333;
		}
		.chart-cta-light .about-quote cite {
			color: #666;
		}
		.founder-photo-wrap {
			position: relative;
			display: inline-block;
		}
		.veteran-badge {
			position: absolute;
			top: 25px;
			left: 25px;
			background: #9F2F0E;;
			color: #fff;
			font-family: Sora, sans-serif;
			font-size: 0.65rem;
			font-weight: 700;
			letter-spacing: 0.1em;
			text-transform: uppercase;
			padding: 6px 12px;
			border-radius: 100px;
			display: flex;
			align-items: center;
			gap: 6px;
			z-index: 2;
			box-shadow: 0 2px 8px rgba(0,0,0,0.3);
		}
		.veteran-badge svg {
			font-size: 0.95rem;
		}
		@media (max-width: 768px) {
			.about-split-img .veteran-badge {
				top: 10px;
			}
		}

	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row { animation-delay: 0.1s; }
	.hero-content h1         { animation-delay: 0.3s; }
	.hero-content > p        { animation-delay: 0.5s; }

	/* Center hero content at narrow widths */
	@media (max-width: 646px) {
		.hero-content .label-row {
			justify-content: center;
		}
		.hero-content h1 {
			text-align: center;
		}
		.hero-content > p {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}
	.about-founder {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
		animation-delay: 0.7s;
	}
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	@media (min-width: 1890px) {
		.chart-cta--story.scroll-fade {
			transition: none;
			animation: heroFadeUp 0.7s ease 0.7s both;
		}
	}


/* ==================== Color chart page (color_chart.html) ==================== */
	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}

	/* Hero page-load fade */
	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row { animation-delay: 0.1s; }
	.hero-content h1         { animation-delay: 0.3s; }
	.hero-content > p        { animation-delay: 0.5s; }

	/* Center hero content at narrow widths */
	@media (max-width: 646px) {
		.hero-content .label-row {
			justify-content: center;
		}
		.hero-content h1 {
			text-align: center;
		}
		.hero-content > p {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}

	/* Color chart page-load fade */
	.color-chart-section {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
		animation-delay: 0.7s;
	}

	/* Scroll fade sections */
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	@media (min-width: 2050px) {
		.chart-cta.scroll-fade {
			transition: none;
			animation: heroFadeUp 0.7s ease 0.7s both;
		}
	}

	@media (max-width: 500px) {
		#here-to-help .help-cta {
			font-size: 0.85rem;
			padding: 12px 24px;
		}
	}

/* ==================== Contact page (contact.html) ==================== */
	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row { animation-delay: 0.1s; }
	.hero-content h1         { animation-delay: 0.3s; }
	.hero-content > p        { animation-delay: 0.5s; }

	/* Center hero content at narrow widths */
	@media (max-width: 646px) {
		.hero-content .label-row {
			justify-content: center;
		}
		.hero-content h1 {
			text-align: center;
		}
		.hero-content > p {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}
	.contact-section {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
		animation-delay: 0.7s;
	}
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	@media (min-width: 2001px) {
		.service-area.scroll-fade {
			transition: opacity 0.7s ease, transform 0.7s ease;
			transition-delay: 0.7s;
		}
	}

/* ==================== FAQ page (faq.html) ==================== */
	.faq-tab {
		color: #6A544E;
		border-bottom: 3px solid transparent;
		margin-bottom: -1px;
	}
	.faq-tab:hover {
		color: #191c1d;
	}
	.faq-tab.active {
		color: #2a6a3f;
		border-bottom-color: #2a6a3f;
	}
	.faq-a {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	/* Mobile: category accordion replaces the tab nav */
	.faq-cat-header {
		display: none;
	}
	@media (max-width: 851px) {
		#faq-tabs-wrap {
			display: none;
		}
		.faq-cat-header {
			display: flex;
		}
		#faq-panels .faq-panel {
			display: none;
			margin-bottom: 16px;
		}
		#faq-panels .faq-panel.cat-open {
			display: block;
		}
		#faq-panels .faq-panel .faq-accordion-group {
			padding-left: 16px;
			border-left: 2px solid #e2bfb4;
			margin-left: 4px;
		}
	}

	/* Shrink tab text/padding so all 6 tabs stay on one row instead of wrapping unevenly (5+1 / 4+2) */
	@media (min-width: 852px) and (max-width: 1249px) {
		#faq-tabs-wrap {
			width: 100%;
		}
		#faq-tabs {
			justify-content: space-between;
		}
		#faq-tabs .faq-tab {
			padding-left: 9px;
			padding-right: 9px;
			font-size: 11.5px;
			letter-spacing: 0.02em;
		}

		/* Grow FAQ question headers to fill the extra width in this range */
		.faq-q .faq-q-text {
			font-size: 28px;
		}
	}

	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row { animation-delay: 0.1s; }
	.hero-content h1         { animation-delay: 0.3s; }
	.hero-content > p        { animation-delay: 0.5s; }

	/* Center hero content at narrow widths */
	@media (max-width: 646px) {
		.hero-content .label-row {
			justify-content: center;
		}
		.hero-content h1 {
			text-align: center;
		}
		.hero-content > p {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}
	.faq-load-fade {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
		animation-delay: 0.7s;
	}
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	@media (min-width: 852px) and (max-width: 1168px), (min-width: 1560px) {
		.chart-cta.scroll-fade {
			transition: none;
			animation: heroFadeUp 0.7s ease 0.7s both;
		}
	}
	@media (min-width: 2450px) {
		.process-section.scroll-fade {
			transition: none;
			animation: heroFadeUp 0.7s ease 0.7s both;
		}
	}

/* ==================== Services page (services.html) ==================== */
	.tactical-btn-shadow { box-shadow: 0 4px 0 0 #842500; }
	.tactical-btn-shadow:active { box-shadow: none; transform: translateY(4px); }

	.finish-cards {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin: 32px 0 28px;
		text-align: left;
	}
	.finish-card {
		background: rgba(255,255,255,0.08);
		border: 1px solid rgba(255,255,255,0.15);
		border-radius: 10px;
		padding: 24px 20px;
	}
	.finish-card-label {
		font-family: Sora, sans-serif;
		font-size: 0.7rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #79f7e3;
		margin-bottom: 8px;
	}
	.finish-card h4 {
		font-family: Sora, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		color: #fff;
		margin-bottom: 10px;
	}
	.finish-card p {
		color: rgba(255,255,255,0.75);
		font-family: Sora, sans-serif;
		font-size: 0.92rem;
		line-height: 1.6;
		margin-bottom: 0 !important;
	}
	.repairs-note {
		font-family: Sora, sans-serif;
		font-size: 0.88rem;
		color: rgba(255,255,255,0.6);
		margin-bottom: 28px;
		font-style: italic;
	}
	.area-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
		margin: 24px 0 36px;
	}
	.area-tag {
		background: #fff3ee;
		border: 1.5px solid #F15A24;
		border-radius: 100px;
		padding: 7px 18px 7px 14px;
		font-family: Sora, sans-serif;
		font-size: 0.8rem;
		font-weight: 600;
		letter-spacing: 0.04em;
		color: #a93200;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		text-decoration: none;
		transition: transform 0.15s ease, background 0.15s ease;
	}
	.area-tag:hover {
		transform: translateY(-3px);
		background: #ffe8db;
	}
	@media (max-width: 768px) {
		.finish-cards { grid-template-columns: 1fr; }
	}
	@media (max-width: 354px) {
		.area-tags {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
		}
		.area-tag {
			justify-content: center;
		}
	}

	@keyframes heroFadeUp {
		from { opacity: 0; transform: translateY(24px); }
		to   { opacity: 1; transform: translateY(0); }
	}

	/* Hero page-load fade */
	.hero-content .label-row,
	.hero-content h1,
	.hero-content > p {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	.hero-content .label-row { animation-delay: 0.1s; }
	.hero-content h1         { animation-delay: 0.3s; }
	.hero-content > p        { animation-delay: 0.5s; }

	/* Why Epoxy page-load fade */
	#why-epoxy .label-row,
	#why-epoxy h2,
	#why-epoxy .help-cards {
		opacity: 0;
		animation: heroFadeUp 0.7s ease forwards;
	}
	#why-epoxy .label-row  { animation-delay: 0.7s; }
	#why-epoxy h2          { animation-delay: 0.9s; }
	#why-epoxy .help-cards { animation-delay: 1.1s; }

	/* Scroll fade sections */
	.scroll-fade {
		opacity: 0;
		transform: translateY(32px);
		transition: opacity 0.9s ease, transform 0.9s ease;
	}
	.scroll-fade.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	@media (min-width: 1800px) {
		.finish-split.scroll-fade {
			transition: none;
			animation: heroFadeUp 0.7s ease 1.4s both;
		}
	}

	/* Center hero content at narrow widths */
	@media (max-width: 646px) {
		.hero-content .label-row {
			justify-content: center;
		}
		.hero-content h1 {
			text-align: center;
		}
		.hero-content > p {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}

	/* Shrink hero label text at very narrow widths */
	@media (max-width: 377px) {
		.hero-content .label-text {
			font-size: 9px;
		}
		.hero-content .label-row::before,
		.hero-content .label-row::after {
			width: 20px;
		}
	}

	/* Why Choose Epoxy? benefit cards */
	#why-epoxy .help-cards {
		grid-template-columns: repeat(4, 1fr);
	}
	@media (max-width: 884px) {
		#why-epoxy .help-cards {
			grid-template-columns: repeat(2, 1fr);
		}
	}
	@media (max-width: 500px) {
		#why-epoxy .help-cards {
			grid-template-columns: 1fr;
		}
	}
