/* ==========================================================================
   Site Solutions one-pager
   Everything is scoped under .ss-page so it cannot leak into other templates.
   ========================================================================== */

.ss-page {
	--ss-green-dark: #122A0B;
	--ss-green: #2a491f;
	--ss-green-mid: #2E7D4F;
	--ss-accent: #ff9e06;
	--ss-bg: #F4F6F4;
	--ss-white: #fff;
	--ss-body: #4A5A50;
	--ss-border: #E3E8E3;
	--ss-radius: 0.75rem;
	--ss-container: 1120px;

	background: var(--ss-white);
	color: var(--ss-green-dark);
	font-family: 'Axiforma', sans-serif;

	/* Header height, used to offset anchor scroll targets. */
	--ss-header-height: 72px;
}

/*
 * Smooth anchor scrolling. Applied to the scroll container (the root element),
 * but only on pages that use this template. scroll-padding keeps anchor targets
 * clear of the sticky header.
 */
:root:has(.ss-page) {
	scroll-behavior: smooth;
	scroll-padding-top: calc(72px + 1rem);
}

.ss-page [id] {
	scroll-margin-top: calc(var(--ss-header-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
	:root:has(.ss-page) {
		scroll-behavior: auto;
	}
}

.ss-page img {
	display: block;
	max-width: 100%;
}

.ss-page ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 0.85rem;
	line-height: inherit;
}

.ss-container {
	width: 100%;
	max-width: var(--ss-container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.ss-page .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* --------------------------------------------------------------- Typography */

.ss-eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ss-green-mid);
}

.ss-eyebrow--light {
	color: var(--ss-accent);
}

.ss-section__heading {
	margin: 0 0 1rem;
	font-size: 2.4rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.ss-section__text {
	margin: 0;
	max-width: 34rem;
	color: var(--ss-body);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* ------------------------------------------------------------------ Buttons */

.ss-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem 1.6rem 0.9rem;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-transform: uppercase;
}

.ss-btn--primary {
	background: var(--ss-green);
	color: var(--ss-white);
}

.ss-btn--primary:hover,
.ss-btn--primary:focus {
	background: var(--ss-green-dark);
	color: var(--ss-white);
}

.ss-btn--outline {
	background: transparent;
	border-color: currentColor;
	color: var(--ss-white);
}

.ss-btn--outline:hover,
.ss-btn--outline:focus {
	background: rgba(255, 255, 255, 0.14);
}

/* ------------------------------------------------------------------- Header */

.ss-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ss-white);
	border-bottom: 1px solid var(--ss-border);
}

.ss-header__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-height: 72px;
}

.ss-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-right: auto;
}

.ss-header__logo {
	width: auto;
	height: 40px;
}

.ss-header__name {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ss-green-dark);
    margin-bottom: -4px;
}

.ss-header__nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.ss-header__link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ss-green-dark);
	transition: color 0.2s ease;
    text-transform: uppercase;
}

.ss-header__link:hover,
.ss-header__link:focus {
	color: var(--ss-green);
}

.ss-header__cta {
	padding: 1rem 1.35rem .75rem;
	font-size: 0.85rem;
}

.ss-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.ss-header__toggle span[aria-hidden] {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: var(--ss-green-dark);
	border-radius: 2px;
}

/* --------------------------------------------------------------------- Hero */

.ss-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 520px;
	padding: 5rem 0;
	background: var(--ss-green-dark);
	overflow: hidden;
}

.ss-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
}

.ss-hero__inner {
	position: relative;
	max-width: var(--ss-container);
	color: var(--ss-white);
}

.ss-hero__heading {
	max-width: 20ch;
	margin: 0 0 1.25rem;
	font-size: 3.4rem;
	line-height: 1.08;
	letter-spacing: -0.015em;
}

.ss-hero__text {
	max-width: 42ch;
	margin: 0 0 2rem;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.86);
}

.ss-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

/* --------------------------------------------------------------- Trust strip */

.ss-strip {
	background: var(--ss-green);
	color: var(--ss-white);
}

.ss-strip__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.ss-strip__item {
	position: relative;
	padding-left: 1rem;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.ss-strip__item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	margin-top: -2.5px;
	border-radius: 50%;
	background: var(--ss-accent);
}

/* ----------------------------------------------------------------- Sections */

.ss-section {
	padding: 5.5rem 0;
}

.ss-section--muted {
	background: var(--ss-bg);
}

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

.ss-section--dark .ss-section__text {
	color: rgba(255, 255, 255, 0.82);
}

.ss-section__head {
	max-width: 40rem;
	margin: 0 auto 3rem;
	text-align: center;
}

.ss-section__head .ss-section__text {
	margin-inline: auto;
}

/* -------------------------------------------------------------- Fleet cards */

.ss-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem;
}

.ss-card {
	display: flex;
	flex-direction: column;
	background: var(--ss-white);
	border-radius: var(--ss-radius);
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(20, 53, 28, 0.06), 0 8px 24px rgba(20, 53, 28, 0.05);
}

.ss-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
}

.ss-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-card__badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	padding: .55rem 0.75rem 0.4rem;
	border-radius: 5px;
	background: var(--ss-green-dark);
	color: var(--ss-white);
	font-size: .7rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ss-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 1.5rem;
}

.ss-card__title {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 700;
}

.ss-card__text {
	margin: 0;
	color: var(--ss-body);
	font-size: 0.875rem;
	line-height: 1.6;
}

.ss-card__spec {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ss-green-dark);
}

.ss-card__link {
	margin-top: auto;
	padding-top: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ss-green);
}

.ss-card__link:hover,
.ss-card__link:focus {
	color: var(--ss-green-dark);
}

/* ------------------------------------------------------------- Value props */

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

.ss-value {
	text-align: center;
}

.ss-value__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.1rem;
	border-radius: var(--ss-radius);
	background: var(--ss-bg);
	color: var(--ss-green);
	font-size: 1.15rem;
}

.ss-value__title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

.ss-value__text {
	margin: 0;
	color: var(--ss-body);
	font-size: 0.85rem;
	line-height: 1.6;
}

/* -------------------------------------------------------------------- About */

.ss-about__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.ss-about__story p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.75;
}

.ss-about__story p:last-child {
	margin-bottom: 0;
}

.ss-about__story strong {
	color: var(--ss-white);
}

.ss-about__media img {
	width: 100%;
	border-radius: var(--ss-radius);
}

.ss-about__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.ss-about__card {
	padding: 1.5rem;
	border-radius: var(--ss-radius);
	border-left: 3px solid var(--ss-accent);
	background: rgba(255, 255, 255, 0.06);
}

.ss-about__card-title {
	margin: 0 0 0.6rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--ss-white);
}

.ss-about__card-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.85rem;
	line-height: 1.65;
}

/* --------------------------------------------------------------------- Team */

.ss-team {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	justify-items: center;
}

.ss-team__photo {
	width: 190px;
	height: 190px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	border: 1px solid var(--ss-border);
	overflow: hidden;
}

.ss-team__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ss-team__member {
	text-align: center;
}

.ss-team__name {
	margin: 0 0 0.3rem;
	font-size: 1rem;
	font-weight: 700;
}

.ss-team__title {
	margin: 0;
	color: var(--ss-body);
	font-size: 0.82rem;
}

.ss-team__group {
	margin: 3.5rem 0 0;
}

.ss-team__group img {
	width: 100%;
	border-radius: var(--ss-radius);
}

/* ------------------------------------------------------------------ Add-ons */

.ss-addons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.ss-addons__heading {
	margin: 0 0 1rem;
	font-size: 2.1rem;
	line-height: 1.15;
}

.ss-addons__text {
	margin: 0 0 1.75rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.7;
}

.ss-addons__list {
	margin: 0 0 2rem;
	display: grid;
	gap: 0.85rem;
}

.ss-addons__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.9);
}

.ss-addons__list i {
	flex: none;
	margin-top: 0.2em;
	color: var(--ss-accent);
	font-size: 0.8rem;
}

.ss-addons__media img {
	width: 100%;
	border-radius: var(--ss-radius);
}

.ss-addons-btn {
    margin-top: 2rem;
}
.ss-addons-btn:hover {
    background: var(--ss-accent);
    color: black;
}

/* ---------------------------------------------------------------- Quote CTA */

.ss-cta {
	background: linear-gradient(135deg, var(--ss-green) 0%, var(--ss-green-mid) 100%);
	color: var(--ss-white);
	text-align: center;
}

.ss-cta__heading {
	margin: 0 0 0.85rem;
	font-size: 2.4rem;
	line-height: 1.15;
}

.ss-cta__text {
	max-width: 32rem;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	line-height: 1.65;
}

.ss-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
	margin-bottom: 1.75rem;
}

.ss-cta .ss-btn--primary {
	background: var(--ss-accent);
	color: var(--ss-green-dark);
}

.ss-cta .ss-btn--primary:hover,
.ss-cta .ss-btn--primary:focus {
	background: var(--ss-white);
	color: var(--ss-green-dark);
}

.ss-cta__email {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
}

.ss-cta__phones {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.88);
}

.ss-cta__phone-label {
	font-weight: 600;
}

/* ------------------------------------------------------------------- Footer */

.ss-footer {
	padding: 4rem 0 1.75rem;
	background: var(--ss-green-dark);
	color: rgba(255, 255, 255, 0.72);
}

.ss-footer__top {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}

.ss-footer__name {
	margin: 0 0 0.75rem;
	color: var(--ss-white);
	font-size: 1rem;
	font-weight: 700;
}

.ss-footer__blurb {
	margin: 0;
	max-width: 24rem;
	font-size: 0.82rem;
	line-height: 1.7;
}

.ss-footer__columns {
	display: contents;
}

.ss-footer__column-title {
	margin: 0 0 1rem;
	color: var(--ss-white);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ss-footer__links {
	display: grid;
	gap: 0.65rem;
	font-size: 0.82rem;
}

.ss-footer__links a:hover,
.ss-footer__links a:focus {
	color: var(--ss-white);
}

.ss-footer__bottom {
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.75rem;
}

.ss-footer__bottom p {
	margin: 0;
	font-size: inherit;
}

/* -------------------------------------------------------------- Responsive */

@media (max-width: 1024px) {
	.ss-hero__heading { font-size: 2.75rem; }
	.ss-section__heading,
	.ss-cta__heading { font-size: 2rem; }
	.ss-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ss-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ss-team__photo { width: 150px; height: 150px; margin-left: auto; margin-right: auto;}
}

@media (max-width: 900px) {
	.ss-header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 0.5rem 1.5rem 1rem;
		background: var(--ss-white);
		border-bottom: 1px solid var(--ss-border);
	}

	.ss-header.is-open .ss-header__nav { display: flex; }

	.ss-header__nav .ss-header__link {
		width: 100%;
		padding: 0.75rem 0;
	}

	.ss-header__toggle { display: flex; }
	.ss-header__inner { position: relative; gap: 1rem; }
	.ss-header__cta { display: none; }
}

@media (max-width: 768px) {
	.ss-section { padding: 3.5rem 0; }
	.ss-hero { min-height: 0; padding: 4rem 0; }
	.ss-hero__heading { font-size: 2.25rem; }
	.ss-strip__inner { gap: 0.75rem 1.5rem; }
	.ss-cards,
	.ss-about__top,
	.ss-about__cards,
	.ss-addons { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
	.ss-team { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
	.ss-addons { gap: 2.25rem; }
}

@media (max-width: 480px) {
	.ss-values,
	.ss-footer__top { grid-template-columns: minmax(0, 1fr); }
	.ss-hero__heading { font-size: 1.9rem; }
	.ss-section__heading,
	.ss-cta__heading { font-size: 1.65rem; }
	.ss-hero__actions .ss-btn,
	.ss-cta__actions .ss-btn { width: 100%; }
}
