@charset "utf-8";
/* --------------------------------------------------------------- fonts */
/* Self-hosted rather than loaded from Google. Nothing outside this domain
   is fetched, so the site cannot be slowed down or broken by a third party,
   and no visitor's IP is handed to another company to render a headline.
   font-display:swap means text is readable before the font arrives. */

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("/assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/assets/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Cormorant Garamond";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/assets/fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
}

/* ==========================================================================
   Skyline Flightline Couriers Ltd
   --------------------------------------------------------------------------
   One stylesheet, no framework, no build step. Ordered: tokens, reset,
   typography, layout primitives, components, page blocks, utilities,
   responsive, print.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */

:root {
	--navy:        #0B2033;
	--navy-deep:   #071726;
	--navy-soft:   #0F2C45;
	--ink:         #0F1F2E;
	--body:        #4A5C6D;
	--muted:       #7B8B9A;
	--line:        #E2E9EF;
	--line-soft:   #EEF3F7;
	--paper:       #F5F8FA;
	--white:       #FFFFFF;

	--gold:        #C8A54B;
	--gold-light:  #EBD79B;
	--gold-dark:   #9A7B2A;
	--gold-ink:    #7A5E14;

	--good:        #0F7F52;
	--warn:        #8A5A00;
	--bad:         #A4162B;

	--shadow-sm:   0 1px 2px rgba(11, 32, 51, .06), 0 2px 6px rgba(11, 32, 51, .05);
	--shadow-md:   0 2px 6px rgba(11, 32, 51, .06), 0 12px 28px rgba(11, 32, 51, .08);
	--shadow-lg:   0 4px 12px rgba(11, 32, 51, .08), 0 28px 60px rgba(11, 32, 51, .14);

	--radius:      14px;
	--radius-sm:   9px;
	--radius-lg:   22px;

	--serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
	--sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--wrap:       1220px;
	--wrap-narrow: 860px;
	--gutter:     clamp(20px, 5vw, 48px);
	--section:    clamp(64px, 9vw, 116px);

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- reset */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--body);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--line-soft); }

/* The UA stylesheet gives <figure> a 40px side margin, which quietly
   shrinks every photo on the page. Reset it here, once. */
figure, figcaption { margin: 0; }

/* <picture> is inline by default, so an img inside it cannot stretch to a
   sized box. This is what makes object-fit work in the mosaic. */
picture { display: block; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-ink); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

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

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ----------------------------------------------------------- typography */

h1, h2, h3, h4 {
	margin: 0 0 .5em;
	color: var(--ink);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -.015em;
}

h1 {
	font-family: var(--serif);
	font-size: clamp(2.35rem, 5.4vw, 4.1rem);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -.02em;
}

h2 {
	font-family: var(--serif);
	font-size: clamp(1.95rem, 3.9vw, 3rem);
	font-weight: 600;
	line-height: 1.1;
}

h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: -.01em; }
h4 { font-size: 1.02rem; }

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

.lede {
	font-size: clamp(1.06rem, 1.7vw, 1.28rem);
	line-height: 1.6;
	color: var(--body);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-ink);
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--gold);
}

.eyebrow--light { color: var(--gold-light); }
.eyebrow--light::before { background: var(--gold); }

.note { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------ layout primitives */

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

.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(44px, 6vw, 76px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .82); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: clamp(20px, 2.6vw, 32px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 72px);
	align-items: center;
}

.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }

/* -------------------------------------------------------------- buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: .01em;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
	background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 46%, var(--gold-dark) 100%);
	color: #241B04;
	box-shadow: 0 1px 2px rgba(11, 32, 51, .16), 0 8px 20px rgba(154, 123, 42, .26);
}

.btn--gold:hover { color: #241B04; box-shadow: 0 2px 5px rgba(11, 32, 51, .18), 0 14px 30px rgba(154, 123, 42, .34); }

.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-soft); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper); border-color: #CBD8E2; color: var(--navy); }

.btn--ghost-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .13); color: #fff; border-color: rgba(255, 255, 255, .5); }

.btn--sm { padding: 11px 20px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn svg { width: 16px; height: 16px; flex: none; }

.textlink {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 1px solid rgba(200, 165, 75, .5);
	padding-bottom: 2px;
	transition: gap .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.textlink:hover { gap: 11px; color: var(--gold-ink); border-color: var(--gold); }
.textlink svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------- header */

.utility {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, .68);
	font-size: 12.8px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.utility__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 26px;
	min-height: 42px;
	padding-block: 7px;
}

.utility__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.utility a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.utility a:hover { color: var(--gold-light); }

.utility__item { display: inline-flex; align-items: center; gap: 7px; }
.utility__item svg { width: 14px; height: 14px; flex: none; opacity: .75; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	isolation: isolate;
	background: rgba(255, 255, 255, .93);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(11, 32, 51, .07); }

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 82px;
	padding-block: 12px;
}

.brand { flex: none; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 50px; background: none; }

.nav { margin-left: auto; }

.nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav__link {
	display: block;
	padding: 10px 15px;
	border-radius: 999px;
	font-size: 14.6px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	transition: background-color .18s var(--ease), color .18s var(--ease);
}

.nav__link:hover { background: var(--paper); color: var(--navy); }

.nav__link[aria-current="page"] {
	color: var(--gold-ink);
	font-weight: 650;
	background: rgba(200, 165, 75, .1);
}

.header__cta { flex: none; display: flex; align-items: center; gap: 10px; }

.nav-toggle {
	display: none;
	flex: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 12px;
	align-items: center;
	justify-content: center;
}

.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
	display: block;
	width: 19px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .25s var(--ease), opacity .2s var(--ease);
}

.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

.skip {
	position: absolute;
	left: 12px;
	top: -70px;
	z-index: 100;
	padding: 12px 20px;
	background: var(--navy);
	color: #fff;
	border-radius: 0 0 10px 10px;
	text-decoration: none;
	transition: top .2s var(--ease);
}

.skip:focus { top: 0; color: #fff; }

/* ----------------------------------------------------------------- hero */

.hero {
	position: relative;
	isolation: isolate;
	background: var(--navy);
	color: rgba(255, 255, 255, .84);
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--navy);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(104deg, rgba(7, 23, 38, .95) 0%, rgba(9, 28, 46, .88) 42%, rgba(11, 32, 51, .55) 75%, rgba(11, 32, 51, .38) 100%),
		linear-gradient(180deg, rgba(7, 23, 38, .55) 0%, rgba(7, 23, 38, 0) 30%);
}

.hero__inner { padding-block: clamp(70px, 11vw, 132px); }
.hero__content { max-width: 660px; }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-light); display: block; }

.hero__lede {
	font-size: clamp(1.06rem, 1.65vw, 1.28rem);
	line-height: 1.62;
	color: rgba(255, 255, 255, .85);
	max-width: 560px;
	margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin: 0;
	padding: 26px 0 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: 13.6px;
	color: rgba(255, 255, 255, .74);
}

.hero__trust li { display: inline-flex; align-items: center; gap: 9px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero--inner { --section: 0px; }
.hero--inner .hero__inner { padding-block: clamp(58px, 8vw, 96px); }
.hero--inner .hero__content { max-width: 720px; }
.hero--inner h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }

/* -------------------------------------------------------- tracking card */

.trackcard {
	background: rgba(255, 255, 255, .97);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: clamp(24px, 3vw, 34px);
	color: var(--body);
	border-top: 4px solid var(--gold);
}

.trackcard h2 {
	font-family: var(--sans);
	font-size: 1.18rem;
	font-weight: 700;
	letter-spacing: -.005em;
	margin-bottom: 6px;
}

.trackcard__note { font-size: 14px; color: var(--muted); margin-bottom: 18px; }

.trackform { display: flex; gap: 10px; flex-wrap: wrap; }

.trackform__input {
	flex: 1 1 220px;
	min-width: 0;
	padding: 15px 18px;
	font-size: 16px;
	letter-spacing: .06em;
	font-weight: 600;
	color: var(--ink);
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: 12px;
	transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.trackform__input::placeholder { font-weight: 400; letter-spacing: .04em; color: #A9B6C2; }
.trackform__input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200, 165, 75, .18); outline: none; }

.trackcard__links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--line-soft);
	font-size: 13.6px;
	color: var(--muted);
}

.trackcard__links a { color: var(--navy); font-weight: 600; text-decoration: none; }
.trackcard__links a:hover { color: var(--gold-ink); text-decoration: underline; }

.hero__grid {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: clamp(30px, 5vw, 64px);
	align-items: center;
}

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

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

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D3DFE8; }

.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--line-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }

.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 9px; }
.card__body p { font-size: 15.2px; margin-bottom: 16px; }
.card__body .textlink { margin-top: auto; align-self: flex-start; }

.card__tag {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(7, 23, 38, .82);
	backdrop-filter: blur(6px);
	color: var(--gold-light);
	font-size: 10.6px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

/* feature card (icon, no photo) */

.feature {
	padding: 28px 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { font-size: 14.9px; margin: 0; }

.feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 13px;
	background: linear-gradient(150deg, rgba(200, 165, 75, .18), rgba(200, 165, 75, .07));
	border: 1px solid rgba(200, 165, 75, .3);
	color: var(--gold-ink);
}

.feature__icon svg { width: 21px; height: 21px; }

.section--navy .feature {
	background: rgba(255, 255, 255, .045);
	border-color: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .78);
}

.section--navy .feature__icon {
	background: rgba(200, 165, 75, .16);
	border-color: rgba(200, 165, 75, .34);
	color: var(--gold-light);
}

/* numbered step */

.step { position: relative; padding-left: 60px; }

.step__num {
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(200, 165, 75, .45);
	background: rgba(200, 165, 75, .1);
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gold-ink);
}

.step h3 { font-size: 1.06rem; margin-bottom: 7px; }
.step p { font-size: 15px; margin: 0; }

.section--navy .step__num { color: var(--gold-light); border-color: rgba(200, 165, 75, .4); background: rgba(200, 165, 75, .14); }

/* --------------------------------------------------------------- lists */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.ticks li {
	position: relative;
	padding-left: 32px;
	font-size: 15.4px;
	line-height: 1.55;
}

.ticks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .34em;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: rgba(200, 165, 75, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A5E14' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}

.section--navy .ticks li::before {
	background-color: rgba(200, 165, 75, .24);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EBD79B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.ticks--two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px 32px; }

.dots { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }

.dots li { position: relative; padding-left: 24px; font-size: 15.2px; line-height: 1.55; }

.dots li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: .62em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
}

/* ---------------------------------------------------------------- stats */

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 2px;
	background: rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	overflow: hidden;
}

.stat { padding: 30px 26px; background: var(--navy); text-align: center; }

.stat__value {
	display: block;
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4.2vw, 3.15rem);
	font-weight: 600;
	line-height: 1;
	color: var(--gold-light);
	letter-spacing: -.02em;
}

.stat__label {
	display: block;
	margin-top: 10px;
	font-size: 12.4px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .72);
}

/* ---------------------------------------------------------------- table */

.tablewrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.tbl { width: 100%; border-collapse: collapse; min-width: 620px; }

.tbl th {
	text-align: left;
	padding: 13px 16px;
	background: var(--navy);
	color: #fff;
	font-size: 10.8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.tbl td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--line-soft);
	font-size: 14.6px;
	line-height: 1.5;
	color: var(--body);
	vertical-align: top;
}

.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:nth-child(even) { background: #FBFDFE; }
.tbl td:first-child { color: var(--ink); font-weight: 600; }

/* -------------------------------------------------------------- accordion */

.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }

.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__item:last-child { border-bottom: 0; }

.acc__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 22px;
	font-size: 15.8px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	transition: background-color .18s var(--ease);
}

.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary:hover { background: var(--paper); }

.acc__item summary::after {
	content: "";
	flex: none;
	width: 13px;
	height: 13px;
	border-right: 2px solid var(--gold-dark);
	border-bottom: 2px solid var(--gold-dark);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .25s var(--ease);
}

.acc__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.acc__item[open] summary { background: var(--paper); }

.acc__body { padding: 0 22px 22px; font-size: 15.2px; line-height: 1.65; }
.acc__body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- notice */

.notice {
	display: flex;
	gap: 18px;
	padding: 26px 28px;
	border-radius: var(--radius);
	background: #FFFBF2;
	border: 1px solid #EBD9AF;
	border-left: 4px solid var(--gold);
}

.notice__icon { flex: none; width: 26px; height: 26px; color: var(--gold-dark); margin-top: 2px; }
.notice h3 { font-size: 1.06rem; margin-bottom: 7px; }
.notice p { font-size: 15px; margin-bottom: .8em; }
.notice p:last-child { margin-bottom: 0; }

.notice--dark {
	background: rgba(200, 165, 75, .1);
	border-color: rgba(200, 165, 75, .32);
	border-left-color: var(--gold);
	color: rgba(255, 255, 255, .82);
}

.notice--dark h3 { color: #fff; }
.notice--dark .notice__icon { color: var(--gold-light); }

/* ---------------------------------------------------------------- media */

.figure {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	background: var(--line-soft);
}

.figure picture { width: 100%; height: 100%; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1 / 1; }

.figure__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 20px 16px;
	background: linear-gradient(180deg, rgba(7, 23, 38, 0), rgba(7, 23, 38, .8));
	color: rgba(255, 255, 255, .92);
	font-size: 13.2px;
	line-height: 1.45;
}

.mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 16px;
	min-height: clamp(360px, 40vw, 520px);
}

.mosaic > :first-child { grid-row: span 2; }
.mosaic .figure { height: 100%; aspect-ratio: auto; }

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

.band {
	position: relative;
	isolation: isolate;
	background: var(--navy);
	color: rgba(255, 255, 255, .84);
	overflow: hidden;
}

.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }

.band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(96deg, rgba(7, 23, 38, .96) 0%, rgba(9, 28, 46, .9) 48%, rgba(11, 32, 51, .66) 100%);
}

.band h2 { color: #fff; }

.cta {
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: clamp(26px, 4vw, 56px);
	align-items: center;
}

.cta h2 { margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, .8); margin: 0; font-size: 1.06rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ----------------------------------------------------------------- forms */

.form { display: grid; gap: 18px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field > label {
	font-size: 13.4px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: .01em;
}

.field .req { color: var(--bad); font-weight: 400; }

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 13px 15px;
	font-size: 15.5px;
	color: var(--ink);
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: 11px;
	transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea { resize: vertical; min-height: 132px; line-height: 1.6; }

.field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5C6D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 15px;
	padding-right: 42px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(200, 165, 75, .16);
}

.field input[type="file"] {
	padding: 10px 12px;
	font-size: 14px;
	background: var(--paper);
	cursor: pointer;
}

.field__help { font-size: 12.8px; color: var(--muted); line-height: 1.5; }

.field--full { grid-column: 1 / -1; }

.check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--body);
}

.check input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-dark); }

.hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.formcard {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: clamp(26px, 3.4vw, 42px);
}

.formstatus {
	padding: 14px 18px;
	border-radius: 11px;
	font-size: 14.6px;
	line-height: 1.55;
	border: 1px solid;
}

.formstatus[hidden] { display: none !important; }
.formstatus--ok { background: #EDFAF3; border-color: #B6E6CD; color: #0B5E3D; }
.formstatus--err { background: #FDEEF0; border-color: #F5C4CB; color: #8C1526; }
.formstatus--busy { background: var(--paper); border-color: var(--line); color: var(--body); }

/* --------------------------------------------------------------- contact */

.contactlist { display: grid; gap: 14px; }

.contactrow {
	display: flex;
	gap: 16px;
	padding: 20px 22px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.contactrow__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(200, 165, 75, .13);
	border: 1px solid rgba(200, 165, 75, .28);
	color: var(--gold-ink);
}

.contactrow__icon svg { width: 19px; height: 19px; }
.contactrow h3 { font-size: .98rem; margin-bottom: 4px; }
.contactrow p { font-size: 14.6px; margin: 0; }
.contactrow a { font-weight: 600; text-decoration: none; }
.contactrow a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- roles */

.role {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px 24px;
	align-items: center;
	padding: 24px 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.role:hover { border-color: #D3DFE8; box-shadow: var(--shadow-sm); }
.role h3 { margin-bottom: 6px; }
.role p { font-size: 14.9px; margin: 0 0 10px; }

.role__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }

.role__meta li {
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-size: 12.4px;
	font-weight: 600;
	color: var(--body);
}

/* ---------------------------------------------------------------- footer */

.site-footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, .68);
	font-size: 14.6px;
	padding-top: clamp(52px, 7vw, 84px);
}

.footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
	gap: clamp(28px, 4vw, 52px);
	padding-bottom: clamp(36px, 5vw, 56px);
}

.footer__brand img { height: 62px; width: auto; background: none; margin-bottom: 20px; }
.footer__blurb { font-size: 14.6px; line-height: 1.7; color: rgba(255, 255, 255, .66); max-width: 330px; }

.footer h4 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 11.6px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__list a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer__list a:hover { color: var(--gold-light); }

.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.footer__contact li { display: flex; gap: 12px; line-height: 1.55; }
.footer__contact svg { flex: none; width: 16px; height: 16px; margin-top: 4px; color: var(--gold); }
.footer__contact a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact .k { display: block; font-size: 11.4px; letter-spacing: .11em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 2px; }

.social { display: flex; gap: 10px; margin-top: 22px; }

.social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, .17);
	color: rgba(255, 255, 255, .74);
	transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.social a:hover { background: rgba(200, 165, 75, .16); border-color: rgba(200, 165, 75, .45); color: var(--gold-light); }
.social svg { width: 17px; height: 17px; }

.footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 26px;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: 13.2px;
	color: rgba(255, 255, 255, .5);
}

.footer__bar a { color: rgba(255, 255, 255, .6); text-decoration: none; }
.footer__bar a:hover { color: var(--gold-light); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; list-style: none; }

.footer__fraud {
	margin: 0;
	padding: 18px 0 0;
	font-size: 12.8px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .5);
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__fraud strong { color: rgba(255, 255, 255, .78); font-weight: 600; }

/* ------------------------------------------------------------- utilities */

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	will-change: opacity, transform;
}

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

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.stack--sm { gap: 14px; }
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
	.footer__top { grid-template-columns: 1fr 1fr; }
	.footer__brand { grid-column: 1 / -1; }
}

/* A `1fr` track is `minmax(auto, 1fr)`, so its minimum is the widest
   unbreakable content inside it. One long address line — "Minot, ND 58703,
   USA" — is enough to push the whole grid past the viewport. Pinning the
   minimum to zero lets the text wrap instead. */
.footer__top > * { min-width: 0; }

@media (max-width: 980px) {
	.hero__grid { grid-template-columns: 1fr; }
	.split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
	.cta { grid-template-columns: 1fr; }
	.cta__actions { justify-content: flex-start; }
}

@media (max-width: 900px) {
	/* The drawer hangs off the bottom edge of the header bar rather than
	   covering it, so the logo and the close button stay visible and the
	   panel is clipped away above by overflow, not by a transform that
	   would paint over the brand. */
	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		padding: 18px var(--gutter) 30px;
		background: var(--white);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: transform .28s var(--ease), opacity .22s var(--ease), visibility .28s var(--ease);
		max-height: calc(100dvh - 72px);
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

	.nav__list { flex-direction: column; align-items: stretch; gap: 2px; }

	.nav__link {
		padding: 15px 16px;
		border-radius: 12px;
		font-size: 17px;
		border-bottom: 1px solid var(--line-soft);
	}

	.nav__list li:last-child .nav__link { border-bottom: 0; }

	.nav__cta { margin-top: 18px; display: grid; gap: 10px; }
	.nav-toggle { display: inline-flex; order: 3; }
	.site-header__inner { min-height: 72px; }
	.header__cta .btn { display: none; }
	.header__cta { margin-left: auto; }
	.brand img { height: 44px; }
	body.nav-open { overflow: hidden; }
}

@media (min-width: 901px) {
	.nav__cta { display: none; }
}

@media (max-width: 760px) {
	.footer__top { grid-template-columns: 1fr; }
	.utility__inner { justify-content: center; text-align: center; }
	.utility__list { justify-content: center; }
	.form__row { grid-template-columns: 1fr; }
	.role { grid-template-columns: 1fr; }
	.mosaic { grid-template-columns: 1fr; }
	.mosaic > :first-child { grid-row: auto; }
	.step { padding-left: 0; padding-top: 56px; }
	.step__num { top: 0; }
}

@media (max-width: 760px) {
	.hero::after {
		background:
			linear-gradient(180deg, rgba(7, 23, 38, .62) 0%, rgba(9, 28, 46, .8) 45%, rgba(11, 32, 51, .94) 100%);
	}
}

@media (max-width: 520px) {
	body { font-size: 16px; }
	.utility__item--tagline { display: none; }
	.trackform__input { flex-basis: 100%; }
	.trackform .btn { width: 100%; }
	.hero__actions .btn { width: 100%; }
	.stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------- print */

@media print {
	.utility, .site-header, .nav-toggle, .band, .site-footer, .skip, .trackcard { display: none !important; }
	body { color: #000; font-size: 11.5pt; }
	.hero { background: none; color: #000; }
	.hero::after, .hero__media { display: none; }
	.hero h1, .hero__lede { color: #000; }
	.section { padding-block: 14pt; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
	.card, .feature, .tablewrap, .formcard { break-inside: avoid; box-shadow: none; }
}

/* A vertical stack of feature cards reads better with the icon beside the
   text than above it — the card is wide and short, not tall. */
.stack--rows .feature {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 22px;
	align-items: start;
	padding: 24px 26px;
}

.stack--rows .feature__icon { margin-bottom: 0; grid-row: span 2; }
.stack--rows .feature h3 { margin-bottom: 6px; align-self: center; }

@media (max-width: 560px) {
	.stack--rows .feature { grid-template-columns: 1fr; }
	.stack--rows .feature__icon { grid-row: auto; margin-bottom: 12px; }
}
