/* ==========================================================================
   Satar Freight Broker — main stylesheet
   Palette and gradients are injected as CSS variables from the Customizer.
   ========================================================================== */

:root {
	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--wrap: 1200px;
	--gap: 2rem;
	--radius: 14px;
	--radius-sm: 8px;

	--shadow-sm: 0 2px 8px rgba(8, 32, 63, 0.07);
	--shadow-md: 0 12px 32px rgba(8, 32, 63, 0.11);
	--shadow-lg: 0 24px 60px rgba(8, 32, 63, 0.16);

	--text: #1B2A3D;
	--text-muted: #5A6B80;
	--line: #DCE6F0;
	--white: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--c-blue);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
	color: var(--c-deep);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
	color: var(--c-ink);
	text-wrap: balance;
}

p {
	margin: 0 0 1.2em;
}

p:last-child {
	margin-bottom: 0;
}

ul, ol {
	margin: 0 0 1.2em;
	padding-left: 1.2em;
}

:focus-visible {
	outline: 3px solid var(--c-orange);
	outline-offset: 3px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 0.75rem 1.25rem;
	background: var(--c-ink);
	color: var(--white);
	border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.section {
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.section--paper {
	background: var(--c-paper);
}

.section--ink {
	background: var(--c-ink);
	color: rgba(255, 255, 255, 0.82);
	position: relative;
	overflow: hidden;
}

.section--ink::before {
	content: "";
	position: absolute;
	inset-inline-end: -12%;
	inset-block-start: -30%;
	width: 55%;
	aspect-ratio: 1;
	background: var(--grad-brand-soft);
	opacity: 0.18;
	filter: blur(80px);
	border-radius: 50%;
	pointer-events: none;
}

.section--ink h2,
.section--ink h3 {
	color: var(--white);
}

.section--ink .section-copy {
	color: rgba(255, 255, 255, 0.72);
}

.section--ink > .wrap {
	position: relative;
	z-index: 1;
}

/* --------------------------------------------------------------------------
   Typographic components
   -------------------------------------------------------------------------- */

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-blue);
	margin: 0 0 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 3px;
	border-radius: 2px;
	background: var(--grad-accent);
	flex: none;
}

.eyebrow--light {
	color: var(--c-sky);
}

.section-head {
	max-width: 62ch;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.section-head--center .eyebrow {
	justify-content: center;
}

.section-title {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	margin-bottom: 0.5em;
	text-transform: uppercase;
}

.section-copy {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin: 0;
}

.section-footnote {
	margin-top: 2rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.95rem;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.6rem;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border: 2px solid transparent;
	border-radius: 999px;
	background-clip: padding-box;
	cursor: pointer;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--lg {
	padding: 1rem 2.1rem;
	font-size: 1rem;
}

.btn--accent {
	background: var(--grad-accent-btn);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(240, 78, 35, 0.28);
}

.btn--accent:hover,
.btn--accent:focus-visible {
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(240, 78, 35, 0.36);
}

.btn--primary {
	background: var(--grad-brand-btn);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(10, 102, 194, 0.24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(10, 102, 194, 0.32);
}

.btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--white);
}

/* On light backgrounds the white ghost button disappears, so any ghost button
   outside a dark section falls back to brand-blue outline styling. */
.section:not(.section--ink) .btn--ghost,
.section--paper .btn--ghost,
.closing-band .btn--ghost,
.packet-actions .btn--ghost {
	border-color: var(--c-blue);
	color: var(--c-blue);
}

.section:not(.section--ink) .btn--ghost:hover,
.section:not(.section--ink) .btn--ghost:focus-visible,
.section--paper .btn--ghost:hover,
.closing-band .btn--ghost:hover,
.packet-actions .btn--ghost:hover {
	background: var(--c-blue);
	border-color: var(--c-blue);
	color: var(--white);
}

/* Solid brand button for places where a gradient competes with the artwork. */
.btn--solid {
	background: var(--c-blue);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(10, 102, 194, 0.24);
}

.btn--solid:hover,
.btn--solid:focus-visible {
	background: var(--c-deep);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(10, 102, 194, 0.32);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--white);
	color: var(--white);
	transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.topbar {
	background: var(--c-ink);
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.85rem;
}

.topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	padding-block: 0.6rem;
}

.topbar__note {
	margin: 0;
}

.topbar__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.topbar__meta a {
	color: var(--white);
	font-weight: 500;
}

.topbar__meta a:hover {
	color: var(--c-sky);
}

/* --------------------------------------------------------------------------
   Header & nav
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 0.9rem;
}

.site-brand img,
.custom-logo {
	max-height: 54px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink);
	padding-block: 0.4rem;
	display: inline-block;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-accent);
	transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
	width: 100%;
}

.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	padding: 0.5rem;
	margin: 0.6rem 0 0;
	list-style: none;
	display: none;
	z-index: 20;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	display: block;
}

.nav-menu .sub-menu a {
	display: block;
	padding: 0.5rem 0.75rem;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.9rem;
	border-radius: 6px;
}

.nav-menu .sub-menu a::after {
	display: none;
}

.nav-menu .sub-menu a:hover {
	background: var(--c-paper);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
}

.nav-toggle__bars {
	display: block;
	width: 26px;
}

.nav-toggle__bars i {
	display: block;
	height: 2.5px;
	border-radius: 2px;
	background: var(--c-ink);
	margin: 5px 0;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

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

.hero {
	position: relative;
	background: var(--c-ink);
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--grad-brand-soft);
	opacity: 0.9;
	z-index: -2;
}

.hero--image::before {
	background-image: linear-gradient(120deg, rgba(8, 32, 63, 0.92) 0%, rgba(11, 61, 145, 0.78) 45%, rgba(18, 183, 242, 0.42) 100%), var(--hero-image);
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.hero::after {
	content: "";
	position: absolute;
	inset-inline-end: -8%;
	inset-block-end: -45%;
	width: 60%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 183, 242, 0.35), transparent 65%);
	z-index: -1;
	pointer-events: none;
}

.hero__inner {
	padding-block: clamp(4rem, 10vw, 7.5rem);
}

.hero__content {
	max-width: 46rem;
}

.hero__title {
	font-size: clamp(2.5rem, 6.4vw, 4.6rem);
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 0.35em;
}

.hero__sub {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.6vw, 1.85rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--c-sky);
	margin-bottom: 0.9rem;
}

.hero__copy {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 46ch;
	margin-bottom: 2rem;
}

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

.hero__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1px;
	margin: clamp(2.75rem, 6vw, 4.5rem) 0 0;
	padding: 0;
	list-style: none;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	overflow: hidden;
}

.hero__stats li {
	background: rgba(8, 32, 63, 0.45);
	padding: 1.5rem 1.6rem;
	backdrop-filter: blur(6px);
}

.hero__stats b {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: var(--white);
}

.hero__stats span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	background: var(--grad-brand-soft);
	color: var(--white);
	overflow: hidden;
	isolation: isolate;
}

.page-hero--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(120deg, rgba(8, 32, 63, 0.9) 0%, rgba(11, 61, 145, 0.75) 50%, rgba(18, 183, 242, 0.4) 100%), var(--hero-image);
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.page-hero__inner {
	padding-block: clamp(3.5rem, 8vw, 6rem);
	max-width: 60rem;
}

.page-hero--compact .page-hero__inner {
	padding-block: clamp(2.75rem, 5vw, 4rem);
}

.page-hero__title {
	font-size: clamp(2.1rem, 5.4vw, 3.8rem);
	color: var(--white);
	text-transform: uppercase;
	margin-bottom: 0.35em;
}

.page-hero__copy {
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 52ch;
	margin-bottom: 1.75rem;
}

.page-hero .post-meta {
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Split sections
   -------------------------------------------------------------------------- */

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.split--reverse .split__media {
	order: 2;
}

.split__media {
	position: relative;
}

.split__image,
.satar-img-placeholder {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	object-fit: cover;
}

.satar-img-placeholder {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--grad-brand);
	opacity: 0.16;
}

.split__body > .section-head {
	margin-bottom: 1.5rem;
}

.check-list {
	list-style: none;
	margin: 1.75rem 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.check-list li {
	position: relative;
	padding-left: 2rem;
	font-weight: 500;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: var(--grad-accent);
	transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 4px;
	background: var(--grad-brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.card:hover::before {
	transform: scaleX(1);
}

.card__title {
	font-size: 1.35rem;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.card__copy {
	color: var(--text-muted);
	font-size: 0.96rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Audience cards
   -------------------------------------------------------------------------- */

.audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.audience-card {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.audience-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.audience-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.audience-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
	transition: transform 0.4s ease;
}

.audience-card:hover .audience-card__image {
	transform: scale(1.04);
}

.audience-card__media .satar-img-placeholder {
	aspect-ratio: 16 / 9;
	border-radius: 0;
	box-shadow: none;
	height: 100%;
}

.audience-card__body {
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	flex: 1;
}

.audience-card__title {
	font-size: 1.6rem;
	text-transform: uppercase;
	margin: 0;
}

.audience-card__copy {
	color: var(--text-muted);
	margin-bottom: 1rem;
	flex: 1;
}

/* --------------------------------------------------------------------------
   Numbered steps
   -------------------------------------------------------------------------- */

.step-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.75rem;
	counter-reset: step;
}

.step {
	position: relative;
	padding: 2rem 1.6rem 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.section:not(.section--ink) .step {
	background: var(--white);
	border-color: var(--line);
}

.step__num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
	display: block;
	margin-bottom: 0.75rem;
	background: var(--grad-accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.step__title {
	font-size: 1.3rem;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.step__copy {
	margin: 0;
	font-size: 0.95rem;
	color: inherit;
	opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Reasons
   -------------------------------------------------------------------------- */

.reason-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.reason {
	padding-left: 1.5rem;
	border-left: 3px solid transparent;
	border-image: var(--grad-brand) 1;
	border-image-slice: 1;
}

.reason__title {
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-bottom: 0.3em;
}

.reason__copy {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 1.75rem;
}

.testimonial {
	margin: 0;
	padding: 2rem 1.75rem;
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--line);
	position: relative;
}

.testimonial::before {
	content: "\201C";
	position: absolute;
	top: 0.25rem;
	right: 1.25rem;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--c-sky);
	opacity: 0.22;
}

.testimonial__quote {
	margin: 0 0 1.25rem;
	padding: 0;
	border: 0;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--text);
}

.testimonial__meta {
	border-top: 1px solid var(--line);
	padding-top: 1rem;
}

.testimonial__meta b {
	display: block;
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	color: var(--c-ink);
	text-transform: uppercase;
}

.testimonial__meta span {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.split--faq {
	align-items: start;
}

.faq {
	border-top: 1px solid var(--line);
}

.faq__item {
	border-bottom: 1px solid var(--line);
}

.faq__q {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 2.5rem 1.1rem 0;
	position: relative;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--c-ink);
	transition: color 0.2s ease;
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__q:hover {
	color: var(--c-blue);
}

.faq__q::after {
	content: "";
	position: absolute;
	right: 0.5rem;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2.5px solid var(--c-orange);
	border-bottom: 2.5px solid var(--c-orange);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
	transform: translateY(-20%) rotate(-135deg);
}

.faq__a {
	padding: 0 2.5rem 1.35rem 0;
	color: var(--text-muted);
	font-size: 0.98rem;
}

.faq__a p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Carrier sign-up
   -------------------------------------------------------------------------- */

.signup {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.signup__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.signup__list li {
	position: relative;
	padding: 1rem 1.25rem 1rem 3rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	color: var(--white);
	font-weight: 500;
}

.signup__list li::before {
	content: "";
	position: absolute;
	left: 1.15rem;
	top: 1.45rem;
	width: 11px;
	height: 11px;
	border-radius: 3px;
	background: var(--grad-accent);
	transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   Closing band
   -------------------------------------------------------------------------- */

.closing-band {
	background: var(--c-paper);
}

.closing-band__inner {
	max-width: 62rem;
	text-align: center;
}

.closing-band__title {
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	text-transform: uppercase;
}

.closing-band__copy {
	font-size: 1.06rem;
	color: var(--text-muted);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.contact-form__title {
	font-size: clamp(1.6rem, 3.2vw, 2.2rem);
	text-transform: uppercase;
	margin-bottom: 0.3em;
}

.contact-form__copy {
	color: var(--text-muted);
	margin-bottom: 2rem;
}

.field-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0 1.25rem;
}

.field {
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.field label {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.field .req {
	color: var(--c-red);
}

.field input,
.field select,
.field textarea,
.search-field,
.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	font-family: inherit;
	font-size: 0.96rem;
	color: var(--text);
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--c-sky);
	box-shadow: 0 0 0 4px rgba(18, 183, 242, 0.14);
}

.field textarea {
	resize: vertical;
	min-height: 140px;
}

.field--submit {
	margin-top: 0.5rem;
}

.hp-field {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.form-notice {
	padding: 1rem 1.25rem;
	border-radius: var(--radius-sm);
	margin-bottom: 1.75rem;
	font-weight: 500;
	border-left: 4px solid;
}

.form-notice--success {
	background: #EAF7EF;
	border-color: #1E9E58;
	color: #14663A;
}

.form-notice--error {
	background: #FDEDE9;
	border-color: var(--c-red);
	color: #A32C13;
}

.contact-details {
	background: var(--c-ink);
	color: rgba(255, 255, 255, 0.78);
	border-radius: var(--radius);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	position: relative;
	overflow: hidden;
}

.contact-details::before {
	content: "";
	position: absolute;
	inset-inline-end: -30%;
	inset-block-start: -30%;
	width: 80%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--grad-brand-soft);
	opacity: 0.25;
	filter: blur(50px);
}

.contact-details > * {
	position: relative;
	z-index: 1;
}

.contact-details__title {
	color: var(--white);
	font-size: 1.6rem;
	text-transform: uppercase;
}

.contact-details__subtitle {
	color: var(--white);
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-top: 2rem;
}

.contact-details__copy {
	font-size: 0.96rem;
	margin-bottom: 1.75rem;
}

.contact-details__list,
.contact-hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.contact-details__list li {
	display: grid;
	gap: 0.15rem;
}

.contact-details__label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-sky);
	font-weight: 700;
}

.contact-details__list a,
.contact-details__list span:not(.contact-details__label) {
	color: var(--white);
	font-size: 1.02rem;
	font-weight: 500;
}

.contact-details__list a:hover {
	color: var(--c-sky);
}

.contact-hours li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.92rem;
}

.contact-hours b {
	color: var(--white);
	white-space: nowrap;
}

.map-section iframe {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
}

.layout-with-sidebar:has(.layout-sidebar) {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 2rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__body {
	padding: 1.5rem;
}

.post-card__title {
	font-size: 1.35rem;
	margin-bottom: 0.4em;
}

.post-card__title a {
	color: var(--c-ink);
}

.post-card__title a:hover {
	color: var(--c-blue);
}

.post-card__excerpt {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 0;
}

.post-meta {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.6rem;
}

.post-meta__sep {
	margin-inline: 0.5rem;
}

.post-hero-image {
	margin: 0 0 2rem;
}

.post-hero-image img {
	border-radius: var(--radius);
	width: 100%;
}

.prose {
	max-width: 72ch;
}

.prose h2 {
	font-size: 1.9rem;
	margin-top: 1.8em;
}

.prose h3 {
	font-size: 1.45rem;
	margin-top: 1.6em;
}

.prose img {
	border-radius: var(--radius);
}

.prose blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.75rem;
	border-left: 4px solid var(--c-sky);
	background: var(--c-paper);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 1.05rem;
}

.widget-area .widget {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.widget-title {
	font-size: 1.15rem;
	text-transform: uppercase;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.6rem;
}

.search-form {
	display: flex;
	gap: 0.6rem;
}

.pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.75rem;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-weight: 600;
	color: var(--c-ink);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--grad-brand);
	border-color: transparent;
	color: var(--white);
}

.comments-area {
	margin-top: 3rem;
}

.comment-list {
	list-style: none;
	padding: 0;
}

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

.footer-cta {
	background: var(--grad-brand-soft);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.footer-cta::after {
	content: "";
	position: absolute;
	inset-inline-start: -10%;
	inset-block-end: -60%;
	width: 45%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	pointer-events: none;
}

.footer-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
	padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.footer-cta__title {
	color: var(--white);
	font-size: clamp(1.7rem, 3.8vw, 2.7rem);
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.footer-cta__copy {
	color: rgba(255, 255, 255, 0.85);
	max-width: 50ch;
	margin: 0;
}

.footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: flex-end;
}

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

.site-footer {
	background: var(--c-ink);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* The logo art is full-color and reads well on the dark footer, so it is
   shown as-is rather than knocked out to a white silhouette. */
.footer-logo {
	max-width: 230px;
	margin-bottom: 1.25rem;
}

.footer-about {
	max-width: 40ch;
	margin-bottom: 1.5rem;
}

.footer-heading {
	color: var(--white);
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}

.footer-heading--spaced {
	margin-top: 2rem;
}

.footer-menu,
.footer-contact,
.footer-hours,
.footer-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.footer-social {
	grid-auto-flow: column;
	justify-content: start;
	gap: 1.25rem;
}

.footer-menu a,
.footer-contact a,
.footer-social a {
	color: rgba(255, 255, 255, 0.72);
}

.footer-menu a:hover,
.footer-contact a:hover,
.footer-social a:hover {
	color: var(--c-sky);
}

.footer-hours li {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.88rem;
}

.footer-hours b {
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
}

.site-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	font-size: 0.86rem;
}

.site-footer__bar p {
	margin: 0;
}

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

@media (max-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-cta__inner {
		grid-template-columns: 1fr;
	}

	.footer-cta__actions {
		justify-content: flex-start;
	}

	.contact-grid,
	.signup {
		grid-template-columns: 1fr;
	}

	.layout-with-sidebar:has(.layout-sidebar) {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 880px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(340px, 86vw);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 5.5rem 1.75rem 2rem;
		background: var(--c-ink);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		z-index: 90;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-menu li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-menu a {
		display: block;
		padding: 0.95rem 0;
		color: var(--white);
		font-size: 1rem;
	}

	.nav-menu .sub-menu {
		position: static;
		display: block;
		background: transparent;
		border: 0;
		box-shadow: none;
		padding: 0 0 0.5rem 1rem;
		margin: 0;
	}

	.nav-menu .sub-menu a {
		color: rgba(255, 255, 255, 0.72);
		padding: 0.6rem 0;
	}

	.nav-cta {
		margin-top: 1.5rem;
	}

	body.nav-open {
		overflow: hidden;
	}

	.split,
	.split--reverse {
		grid-template-columns: 1fr;
	}

	.split--reverse .split__media {
		order: 0;
	}
}

@media (max-width: 640px) {
	.topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.topbar__note {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero__actions .btn,
	.footer-cta__actions .btn {
		width: 100%;
	}

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

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* --------------------------------------------------------------------------
   Footer menu safety net

   wp_nav_menu() output and the fallback menu both land in the footer columns.
   These rules keep the list vertical and legible on the dark footer even if a
   generic nav class ends up on the element.
   -------------------------------------------------------------------------- */

.site-footer .footer-menu,
.site-footer .nav-menu {
	display: grid;
	grid-auto-flow: row;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .footer-menu a,
.site-footer .nav-menu a {
	display: inline-block;
	padding: 0;
	font-size: 0.94rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu a:focus-visible,
.site-footer .nav-menu a:hover,
.site-footer .nav-menu a:focus-visible {
	color: var(--c-sky);
}

.site-footer .nav-menu a::after {
	display: none;
}

/* --------------------------------------------------------------------------
   Quote form — cargo dimensions
   -------------------------------------------------------------------------- */

.cargo-fieldset {
	margin: 0 0 1.25rem;
	padding: 1.5rem 1.5rem 0.5rem;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--c-paper);
}

.cargo-legend {
	padding-inline: 0.6rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.cargo-note {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.field-row--three {
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* --------------------------------------------------------------------------
   Carrier packet + capability statement
   -------------------------------------------------------------------------- */

.signup__packet {
	margin: 1.25rem 0 0.75rem;
}

.signup__packet-note {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 46ch;
}

.section:not(.section--ink) .signup__packet-note {
	color: var(--text-muted);
}

.footer-capability {
	margin: 1.25rem 0 0;
}

.footer-capability a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.1rem;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-capability a:hover,
.footer-capability a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--c-sky);
	color: var(--white);
}

.topbar__fax,
.footer-fax {
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Carrier packet section
   -------------------------------------------------------------------------- */

.packet-section .section-head {
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.packet-steps {
	list-style: none;
	margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.packet-step {
	position: relative;
	padding: 2.25rem 1.75rem 1.9rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	overflow: hidden;
}

.packet-step::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 4px;
	background: var(--grad-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}

.packet-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.packet-step:hover::before {
	transform: scaleX(1);
}

.packet-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	background: var(--grad-brand);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.packet-step__title {
	font-size: 1.18rem;
	text-transform: uppercase;
	margin-bottom: 0.45em;
}

.packet-step__copy {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-muted);
}

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

.packet-note,
.packet-empty {
	margin: 1.5rem auto 0;
	max-width: 62ch;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-muted);
}

.packet-empty {
	padding: 1rem 1.25rem;
	border: 1px dashed var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
}

@media (max-width: 640px) {
	.packet-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.packet-actions .btn {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Carrier packet — request & return blocks
   -------------------------------------------------------------------------- */

.packet-request,
.packet-return {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.packet-request {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--line);
}

.packet-request__title,
.packet-return__title {
	font-size: 1.35rem;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.packet-request__copy,
.packet-return__copy {
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.packet-request__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: stretch;
}

.packet-request__form input[type="email"] {
	flex: 1 1 260px;
	min-width: 0;
	padding: 0.8rem 1.5rem;
	font-family: inherit;
	font-size: 0.96rem;
	color: var(--text);
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: 999px;
}

.packet-request__form input[type="email"]:focus {
	outline: none;
	border-color: var(--c-sky);
	box-shadow: 0 0 0 4px rgba(18, 183, 242, 0.14);
}

.packet-return {
	margin-top: 2.5rem;
}

@media (max-width: 560px) {
	.packet-request__form {
		flex-direction: column;
	}

	.packet-request__form .btn {
		width: 100%;
	}
}
