:root {
	--prestige-navy: #001a33;
	--prestige-navy-deep: #001326;
	--prestige-ink: #07162c;
	--prestige-gold: #e9a30c;
	--prestige-gold-light: #f5b51b;
	--prestige-muted: #5e6878;
	--prestige-line: #dfe4ea;
	--prestige-soft: #f7f8fa;
}

html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: #fff;
	color: var(--prestige-ink);
	font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
body.prestige-menu-open,
body.prestige-modal-open { overflow: hidden; }
.prestige-site,
.prestige-site * { box-sizing: border-box; }
.prestige-site a { text-decoration: none; }
.prestige-site img { display: block; max-width: 100%; }
.prestige-site button,
.prestige-site input,
.prestige-site select,
.prestige-site textarea { font: inherit; }
.prestige-icon { width: 22px; height: 22px; flex: 0 0 auto; }
.prestige-shell { width: min(1320px, calc(100% - 80px)); margin-inline: auto; }
.prestige-content { min-height: 60vh; overflow: clip; }

/* Header */
.prestige-header {
	position: sticky;
	top: 0;
	z-index: 10000;
	background: rgba(255,255,255,.98);
	border-bottom: 1px solid #e2e6eb;
	box-shadow: 0 1px 0 rgba(1,24,48,.02);
	backdrop-filter: blur(14px);
}
.admin-bar .prestige-header { top: 32px; }
.prestige-header__inner {
	width: min(1480px, calc(100% - 48px));
	height: 86px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 36px;
}
.prestige-header__logo { flex: 0 0 210px; }
.prestige-header__logo img { width: 210px; height: auto; }
.prestige-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 1.7vw, 31px);
	margin-left: auto;
}
.prestige-desktop-nav > a,
.prestige-nav-dropdown > button {
	position: relative;
	border: 0;
	background: none;
	padding: 31px 0;
	color: var(--prestige-ink);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
}
.prestige-desktop-nav > a::after,
.prestige-nav-dropdown > button::after {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 22px;
	height: 2px;
	background: var(--prestige-gold);
	transition: .2s ease;
}
.prestige-desktop-nav > a:hover::after,
.prestige-desktop-nav > a.is-active::after,
.prestige-nav-dropdown:hover > button::after { left: 0; right: 0; }
.prestige-nav-dropdown { position: relative; }
.prestige-nav-dropdown > button { display: flex; align-items: center; gap: 4px; }
.prestige-nav-dropdown > button .prestige-icon { width: 13px; height: 13px; transform: rotate(90deg); }
.prestige-nav-dropdown__menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -22px;
	width: 210px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--prestige-line);
	border-radius: 10px;
	box-shadow: 0 16px 35px rgba(0,23,45,.13);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s ease;
}
.prestige-nav-dropdown:hover .prestige-nav-dropdown__menu,
.prestige-nav-dropdown:focus-within .prestige-nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.prestige-nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 7px; color: var(--prestige-ink); font-size: 13px; font-weight: 600; }
.prestige-nav-dropdown__menu a:hover { color: var(--prestige-gold); background: #f8fafc; }
.prestige-header__actions { display: flex; align-items: center; gap: 10px; }
.prestige-phone-pill,
.prestige-book-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border-radius: 11px;
	font-size: 13px;
	font-weight: 700;
}
.prestige-phone-pill { gap: 10px; padding: 0 18px; color: var(--prestige-ink); border: 1px solid var(--prestige-line); }
.prestige-phone-pill .prestige-icon { width: 17px; height: 17px; color: var(--prestige-gold); }
.prestige-book-button { gap: 16px; padding: 0 20px; color: #fff; background: var(--prestige-navy); box-shadow: 0 8px 18px rgba(0,26,51,.15); }
.prestige-book-button:hover { background: #062b50; color: #fff; }
.prestige-book-button .prestige-icon { width: 17px; height: 17px; }
.prestige-menu-toggle { display: none; width: 45px; height: 45px; padding: 0; border: 0; color: var(--prestige-ink); background: transparent; cursor: pointer; }
.prestige-menu-toggle .prestige-icon { width: 29px; height: 29px; }
.prestige-menu-toggle__close { display: none; }
.prestige-menu-toggle[aria-expanded="true"] .prestige-menu-toggle__open { display: none; }
.prestige-menu-toggle[aria-expanded="true"] .prestige-menu-toggle__close { display: inline-flex; }
.prestige-mobile-menu { display: none; }

/* Hero and quote form */
.prestige-hero {
	position: relative;
	height: 508px;
	margin-bottom: 104px;
	background: var(--prestige-navy-deep) url("../img/prestige-home/hero-airport.png") center 58% / cover no-repeat;
}
.prestige-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,16,31,.94) 0%, rgba(0,18,35,.8) 39%, rgba(0,18,35,.2) 66%, rgba(0,12,24,.12) 100%); }
.prestige-hero__inner { position: relative; height: 100%; }
.prestige-hero__copy { position: absolute; z-index: 1; top: 57px; left: 24px; width: 570px; color: #fff; }
.prestige-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 17px;
	padding: 7px 13px;
	border: 1px solid rgba(233,163,12,.7);
	border-radius: 999px;
	background: rgba(0,15,30,.35);
	font-size: 12px;
	font-weight: 500;
}
.prestige-hero__eyebrow .prestige-icon { width: 14px; height: 14px; color: var(--prestige-gold); }
.prestige-hero__copy h1 { margin: 0; max-width: 560px; color: #fff; font-size: clamp(38px, 3.25vw, 51px); line-height: 1.13; letter-spacing: -.035em; font-weight: 700; }
.prestige-hero__lead { max-width: 560px; margin: 17px 0 25px; color: rgba(255,255,255,.83); font-size: 15px; line-height: 1.65; }
.prestige-hero__proof { display: flex; gap: 28px; }
.prestige-hero__proof span { display: flex; align-items: center; gap: 10px; min-width: 105px; }
.prestige-hero__proof .prestige-icon { width: 28px; height: 28px; color: var(--prestige-gold-light); }
.prestige-hero__proof strong { color: #fff; font-size: 12px; line-height: 1.35; font-weight: 600; }
.prestige-quote-card {
	position: absolute;
	z-index: 5;
	left: 20px;
	right: 20px;
	bottom: -115px;
	min-height: 230px;
	display: grid;
	grid-template-columns: 190px minmax(0,1fr);
	gap: 26px;
	padding: 17px 22px;
	border: 1px solid #e9ecef;
	border-radius: 17px;
	background: rgba(255,255,255,.98);
	box-shadow: 0 16px 40px rgba(0,20,40,.13);
}
.prestige-service-tabs { display: grid; grid-template-columns: 1fr; align-content: stretch; border-radius: 10px; overflow: hidden; background: #f4f6f8; }
.prestige-service-tabs button {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 8px 13px;
	border: 0;
	background: transparent;
	color: #596476;
	font-size: 12px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}
.prestige-service-tabs button span br { display: none; }
.prestige-service-tabs button.is-active { color: var(--prestige-ink); background: #fbf5e9; }
.prestige-service-tabs button .prestige-icon { width: 22px; height: 22px; color: #9da5af; }
.prestige-service-tabs button.is-active .prestige-icon { color: var(--prestige-gold); }
.prestige-quote-fields { display: grid; grid-template-columns: repeat(8, minmax(0,1fr)); gap: 14px 15px; align-content: center; }
.prestige-field { min-width: 0; margin: 0; color: var(--prestige-ink); }
.prestige-field > span:first-child:not(.prestige-field__icon) { display: block; margin: 0 0 8px; font-size: 12px; font-weight: 700; }
.prestige-field--pickup,
.prestige-field--dropoff { grid-column: span 4; }
.prestige-input-wrap { position: relative; display: block; }
.prestige-input-wrap > .prestige-icon { position: absolute; top: 50%; right: 13px; width: 18px; height: 18px; transform: translateY(-50%); color: var(--prestige-ink); pointer-events: none; }
.prestige-field input,
.prestige-field select,
.prestige-contact-grid input,
.prestige-contact-grid textarea {
	width: 100%;
	border: 1px solid #dfe4ea;
	border-radius: 8px;
	background: #fff;
	color: var(--prestige-ink);
	outline: 0;
}
.prestige-input-wrap input { height: 43px; padding: 0 42px 0 13px; font-size: 12px; }
.prestige-field input:focus,
.prestige-field select:focus,
.prestige-contact-grid input:focus,
.prestige-contact-grid textarea:focus { border-color: var(--prestige-gold); box-shadow: 0 0 0 3px rgba(233,163,12,.13); }
.prestige-field--compact {
	grid-column: span 2;
	min-height: 58px;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 7px 10px;
	border: 1px solid #dfe4ea;
	border-radius: 8px;
	background: #fff;
}
.prestige-field--compact > span:last-child { min-width: 0; flex: 1; }
.prestige-field--compact strong { display: block; margin-bottom: 2px; font-size: 11px; line-height: 1.1; }
.prestige-field--compact input,
.prestige-field--compact select { height: 20px; padding: 0; border: 0; border-radius: 0; color: #7a8492; font-size: 11px; box-shadow: none; }
.prestige-field__icon .prestige-icon { width: 22px; height: 22px; }
.prestige-quote-submit { grid-column: span 2; display: flex; flex-direction: column; gap: 7px; align-items: center; justify-content: center; }
.prestige-quote-submit button,
.prestige-send-quote {
	width: 100%;
	height: 47px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	border: 0;
	border-radius: 7px;
	background: var(--prestige-navy);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}
.prestige-quote-submit button:hover,
.prestige-send-quote:hover { background: #06325b; }
.prestige-quote-submit .prestige-icon,
.prestige-send-quote .prestige-icon { width: 18px; height: 18px; }
.prestige-quote-submit small { color: #7c8592; font-size: 10px; }

/* Quote modal */
.prestige-quote-modal { position: fixed; inset: 0; z-index: 20000; display: grid; place-items: center; padding: 18px; background: rgba(0,13,27,.74); opacity: 0; visibility: hidden; transition: .2s ease; }
.prestige-quote-modal.is-open { opacity: 1; visibility: visible; }
.prestige-quote-modal__panel { position: relative; width: min(610px,100%); max-height: calc(100vh - 36px); overflow-y: auto; padding: 34px; border-radius: 16px; background: #fff; box-shadow: 0 25px 80px rgba(0,0,0,.28); transform: translateY(15px); transition: .2s ease; }
.prestige-quote-modal.is-open .prestige-quote-modal__panel { transform: translateY(0); }
.prestige-modal-close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid var(--prestige-line); border-radius: 50%; color: var(--prestige-ink); background: #fff; cursor: pointer; }
.prestige-modal-close .prestige-icon { width: 19px; height: 19px; }
.prestige-quote-modal h2 { margin: 6px 45px 8px 0; color: var(--prestige-ink); font-size: 27px; letter-spacing: -.025em; }
.prestige-quote-summary { margin: 0 0 20px; padding: 12px 14px; border-radius: 8px; color: #344054; background: #f3f5f7; font-size: 12px; line-height: 1.55; }
.prestige-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prestige-contact-grid label span { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 700; }
.prestige-contact-grid input { height: 44px; padding: 0 12px; }
.prestige-contact-grid textarea { min-height: 90px; padding: 10px 12px; resize: vertical; }
.prestige-contact-grid__wide { grid-column: 1 / -1; }
.prestige-honeypot { position: absolute !important; left: -9999px !important; }
.prestige-send-quote { height: 50px; margin-top: 17px; }
.prestige-send-quote[disabled] { opacity: .65; cursor: wait; }
.prestige-form-message { display: none; margin-top: 14px; padding: 11px 13px; border-radius: 7px; font-size: 12px; line-height: 1.5; }
.prestige-form-message.is-error { display: block; color: #8d1b1b; background: #fff0f0; }
.prestige-form-message.is-success { display: block; color: #12562b; background: #edf9f0; }
.prestige-form-privacy { margin: 10px 0 0; color: #7d8590; font-size: 10px; text-align: center; }

/* Reusable section elements */
.prestige-section { padding: 52px 0; background: #fff; }
.prestige-heading { margin-bottom: 30px; text-align: center; }
.prestige-heading h2 { margin: 7px 0 0; color: var(--prestige-ink); font-size: clamp(25px,2.2vw,34px); line-height: 1.2; letter-spacing: -.035em; font-weight: 700; }
.prestige-heading h2::after { content: ""; display: block; width: 36px; height: 1px; margin: 15px auto 0; background: var(--prestige-gold); }
.prestige-kicker { margin: 0; color: #d48b00; font-size: 11px; line-height: 1.4; letter-spacing: .13em; font-weight: 700; }
.prestige-round-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(233,163,12,.9); border-radius: 50%; color: var(--prestige-gold-light); background: var(--prestige-navy); }
.prestige-round-icon .prestige-icon { width: 24px; height: 24px; }

/* Benefits */
.prestige-benefits { padding-top: 75px; padding-bottom: 58px; }
.prestige-benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.prestige-benefit-card { min-height: 200px; padding: 28px 20px 24px; border: 1px solid #e1e5e9; border-radius: 11px; text-align: center; background: #fff; }
.prestige-benefit-card .prestige-round-icon { width: 62px; height: 62px; margin: 0 auto 15px; }
.prestige-benefit-card .prestige-round-icon .prestige-icon { width: 29px; height: 29px; }
.prestige-benefit-card h3 { margin: 0 0 10px; color: var(--prestige-ink); font-size: 15px; font-weight: 600; }
.prestige-benefit-card p { max-width: 225px; margin: 0 auto; color: var(--prestige-muted); font-size: 12px; line-height: 1.6; }

/* Services */
.prestige-services { padding-top: 31px; padding-bottom: 30px; border-top: 1px solid #eef0f2; }
.prestige-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.prestige-service-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid #e0e4e8; border-radius: 8px; background: #fff; box-shadow: 0 3px 10px rgba(0,20,40,.04); }
.prestige-service-card > img { width: 100%; height: 134px; object-fit: cover; }
.prestige-service-card > .prestige-round-icon { position: absolute; top: 108px; left: 50%; transform: translateX(-50%); }
.prestige-service-card > div { min-height: 139px; padding: 34px 20px 20px; text-align: center; }
.prestige-service-card h3 { margin: 0 0 8px; color: var(--prestige-ink); font-size: 15px; font-weight: 600; }
.prestige-service-card p { min-height: 38px; margin: 0 0 11px; color: #505b69; font-size: 11px; line-height: 1.7; }
.prestige-service-card a,
.prestige-destination-card a { display: inline-flex; align-items: center; gap: 6px; color: #d78d00; font-size: 11px; font-weight: 600; }
.prestige-service-card a .prestige-icon,
.prestige-destination-card a .prestige-icon { width: 13px; height: 13px; }
.prestige-view-services { display: none; }

/* Stats */
.prestige-stats { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 28% 0, #0a345b 0, transparent 43%), linear-gradient(110deg,#00172c,#002744 55%,#00172c); }
.prestige-stats::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-radial-gradient(ellipse at 0 100%, transparent 0 18px, #67a4d1 19px 20px); }
.prestige-stats__grid { position: relative; min-height: 180px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.prestige-stats article { min-height: 100px; display: flex; align-items: center; gap: 18px; padding: 15px 32px; border-right: 1px solid rgba(255,255,255,.19); }
.prestige-stats article:last-child { border-right: 0; }
.prestige-stat-icon { display: grid; place-items: center; width: 72px; height: 72px; flex: 0 0 72px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; color: var(--prestige-gold-light); background: linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.04)); }
.prestige-stat-icon .prestige-icon { width: 34px; height: 34px; }
.prestige-stats strong { display: block; margin-bottom: 3px; font-size: 25px; line-height: 1.1; }
.prestige-stats b { display: block; color: var(--prestige-gold-light); font-size: 12px; line-height: 1.4; font-weight: 600; }
.prestige-stats p { max-width: 150px; margin: 9px 0 0; color: rgba(255,255,255,.8); font-size: 10px; line-height: 1.55; }

/* Testimonials */
.prestige-testimonials { padding-top: 34px; padding-bottom: 30px; background: #fafbfc; }
.prestige-testimonial-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.prestige-testimonial-card { min-height: 191px; padding: 20px 26px; border: 1px solid #e3e6e9; border-radius: 11px; background: #fff; box-shadow: 0 3px 12px rgba(0,20,40,.025); }
.prestige-testimonial-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.prestige-testimonial-top > .prestige-icon { width: 24px; height: 24px; color: var(--prestige-ink); fill: var(--prestige-ink); }
.prestige-testimonial-top span { color: var(--prestige-gold-light); font-size: 14px; letter-spacing: 1px; }
.prestige-testimonial-card > p { min-height: 62px; margin: 0 0 14px; color: #313b4a; font-size: 12px; line-height: 1.65; }
.prestige-customer { display: flex; align-items: center; gap: 10px; }
.prestige-customer > span { display: grid; place-items: center; width: 41px; height: 41px; border: 2px solid #f1e4c9; border-radius: 50%; color: #fff; background: linear-gradient(135deg,#305f70,#0e2837); font-size: 10px; font-weight: 700; }
.prestige-customer strong,
.prestige-customer small { display: block; }
.prestige-customer strong { font-size: 11px; }
.prestige-customer small { margin-top: 2px; color: var(--prestige-muted); font-size: 10px; }
.prestige-slider-wrap { position: relative; }
.prestige-slider-arrow { display: none; }
.prestige-slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 17px; }
.prestige-slider-dots i { width: 8px; height: 8px; border-radius: 50%; background: #dce0e5; }
.prestige-slider-dots i.is-active { background: var(--prestige-gold); }

/* Destinations */
.prestige-destinations { padding-top: 33px; padding-bottom: 27px; }
.prestige-destination-track { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.prestige-destination-card { position: relative; overflow: hidden; border: 1px solid #dfe4e8; border-radius: 9px; background: #fff; box-shadow: 0 3px 11px rgba(0,20,40,.035); }
.prestige-destination-card > img { width: 100%; height: 135px; object-fit: cover; }
.prestige-destination-card > .prestige-round-icon { position: absolute; top: 110px; left: 50%; width: 44px; height: 44px; transform: translateX(-50%); }
.prestige-destination-card > div { min-height: 119px; padding: 31px 13px 15px; text-align: center; }
.prestige-destination-card h3 { min-height: 35px; display: grid; place-items: center; margin: 0 0 5px; color: var(--prestige-ink); font-size: 12px; line-height: 1.35; }
.prestige-destination-card p { min-height: 37px; margin: 0 0 8px; color: var(--prestige-muted); font-size: 9px; line-height: 1.55; }
.prestige-destination-dots { display: none; }

/* Trust and CTA */
.prestige-trust-row { padding: 31px 0; background: #f8f9fa; border-block: 1px solid #eef0f2; }
.prestige-trust-row .prestige-shell { display: grid; grid-template-columns: repeat(4,1fr); }
.prestige-trust-row article { display: flex; align-items: center; gap: 15px; padding: 0 26px; border-right: 1px solid #dfe3e7; }
.prestige-trust-row article:last-child { border-right: 0; }
.prestige-trust-row article > .prestige-icon { width: 48px; height: 48px; padding: 12px; border-radius: 50%; color: var(--prestige-ink); background: #f6f1e7; }
.prestige-trust-row strong { display: block; margin-bottom: 5px; font-size: 11px; }
.prestige-trust-row p { margin: 0; color: #4f5966; font-size: 9px; line-height: 1.55; }
.prestige-cta-section { padding: 29px 0 22px; }
.prestige-cta {
	position: relative;
	min-height: 174px;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 29px 52px;
	border-radius: 13px;
	color: #fff;
	background: linear-gradient(90deg,rgba(0,22,42,.98) 0%,rgba(0,35,64,.91) 48%,rgba(0,24,45,.33) 100%), url("../img/prestige-home/hero-airport.png") 78% 62% / cover no-repeat;
}
.prestige-cta > div { position: relative; z-index: 1; max-width: 460px; }
.prestige-cta h2 { margin: 0 0 7px; color: #fff; font-size: 23px; letter-spacing: -.025em; }
.prestige-cta p { max-width: 400px; margin: 0 0 17px; color: rgba(255,255,255,.9); font-size: 12px; line-height: 1.6; }
.prestige-cta a { display: inline-flex; align-items: center; gap: 20px; height: 43px; padding: 0 17px; border-radius: 7px; color: #041527; background: linear-gradient(#ffc131,#f3a70c); box-shadow: 0 7px 16px rgba(233,163,12,.23); font-size: 11px; font-weight: 700; }
.prestige-cta a .prestige-icon { width: 16px; height: 16px; }

/* Simple inner-page components */
.prestige-inner-hero { padding: 72px 0; color: #fff; background: linear-gradient(90deg,rgba(0,19,37,.96),rgba(0,31,58,.78)), url("../img/prestige-home/hero-airport.png") center 55% / cover no-repeat; }
.prestige-inner-hero h1 { margin: 7px 0 10px; color: #fff; font-size: clamp(34px,4vw,52px); letter-spacing: -.04em; }
.prestige-inner-hero > .prestige-shell > p:last-child { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.65; }
.prestige-inner-section { padding: 60px 0; background: #f7f8fa; }
.prestige-fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.prestige-fleet-card { overflow: hidden; border: 1px solid var(--prestige-line); border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(0,23,45,.05); }
.prestige-fleet-card > img { width: 100%; height: 250px; object-fit: cover; }
.prestige-fleet-card > div { padding: 22px; }
.prestige-fleet-card h2 { margin: 0 0 6px; color: var(--prestige-ink); font-size: 20px; }
.prestige-fleet-card strong { color: #d48b00; font-size: 11px; }
.prestige-fleet-card p { min-height: 68px; margin: 12px 0 18px; color: var(--prestige-muted); font-size: 12px; line-height: 1.65; }
.prestige-fleet-card a { display: inline-flex; align-items: center; gap: 12px; min-height: 40px; padding: 0 15px; border-radius: 7px; color: #fff; background: var(--prestige-navy); font-size: 11px; font-weight: 700; }
.prestige-fleet-card a .prestige-icon { width: 15px; height: 15px; }

/* Footer */
.prestige-footer { color: #d8e0e7; background: radial-gradient(circle at 88% 20%,#073457 0,transparent 33%), linear-gradient(115deg,#00172c,#00243f 55%,#00182d); }
.prestige-footer__main { min-height: 212px; display: grid; grid-template-columns: 1.55fr repeat(4,1fr); gap: 48px; padding-top: 30px; padding-bottom: 24px; }
.prestige-footer__brand img { width: 188px; height: auto; filter: brightness(1.08); }
.prestige-footer__brand p { max-width: 255px; margin: 12px 0 14px; color: rgba(255,255,255,.8); font-size: 10px; line-height: 1.7; }
.prestige-socials { display: flex; gap: 9px; }
.prestige-socials a { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; }
.prestige-socials .prestige-icon { width: 14px; height: 14px; }
.prestige-footer__column h2 { margin: 2px 0 14px; color: #fff; font-size: 12px; font-weight: 700; }
.prestige-footer__column ul { margin: 0; padding: 0; list-style: none; }
.prestige-footer__column li { margin: 0 0 9px; color: rgba(255,255,255,.82); font-size: 10px; line-height: 1.45; }
.prestige-footer__column a { color: inherit; }
.prestige-footer__column a:hover { color: var(--prestige-gold-light); }
.prestige-footer__contact li,
.prestige-footer__contact a { display: flex; align-items: flex-start; gap: 8px; }
.prestige-footer__contact .prestige-icon { width: 15px; height: 15px; color: var(--prestige-gold-light); }
.prestige-footer__toggle { display: none; }
.prestige-footer__bottom { min-height: 63px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.76); }
.prestige-footer__bottom p { margin: 0; font-size: 9px; }
.prestige-footer__assurances { display: flex; align-items: center; gap: 40px; }
.prestige-footer__assurances span { display: inline-flex; align-items: center; gap: 8px; font-size: 9px; }
.prestige-footer__assurances .prestige-icon { width: 16px; height: 16px; color: var(--prestige-gold-light); }

@media (max-width: 1230px) {
	.prestige-header__inner { gap: 20px; }
	.prestige-header__logo { flex-basis: 180px; }
	.prestige-header__logo img { width: 180px; }
	.prestige-desktop-nav { gap: 16px; }
	.prestige-desktop-nav > a,
	.prestige-nav-dropdown > button { font-size: 12px; }
	.prestige-phone-pill { padding: 0 12px; }
	.prestige-book-button { padding: 0 14px; }
	.prestige-footer__main { gap: 30px; }
}

@media (max-width: 1050px) {
	.prestige-desktop-nav { display: none; }
	.prestige-header__inner { width: calc(100% - 30px); height: 83px; }
	.prestige-header__logo { flex-basis: auto; margin-right: auto; }
	.prestige-header__logo img { width: 205px; }
	.prestige-menu-toggle { display: grid; place-items: center; }
	.prestige-mobile-menu {
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: 1px;
		max-height: 0;
		overflow: hidden;
		padding: 0 18px;
		background: #fff;
		transition: max-height .3s ease, padding .3s ease;
	}
	.prestige-mobile-menu.is-open { max-height: 420px; padding-top: 14px; padding-bottom: 18px; border-top: 1px solid var(--prestige-line); }
	.prestige-mobile-menu a { padding: 11px 12px; border-radius: 7px; color: var(--prestige-ink); font-size: 13px; font-weight: 600; }
	.prestige-mobile-menu a:hover { color: var(--prestige-gold); background: #f5f7f9; }
	.prestige-mobile-menu__book { color: #fff !important; background: var(--prestige-navy); }
	.prestige-benefit-grid { grid-template-columns: repeat(2,1fr); }
	.prestige-stats article { padding: 15px; }
	.prestige-stat-icon { width: 58px; height: 58px; flex-basis: 58px; }
	.prestige-footer__main { grid-template-columns: 1.4fr repeat(2,1fr); }
	.prestige-footer__contact { grid-column: 3; }
}

@media (max-width: 782px) {
	.admin-bar .prestige-header { top: 46px; }
	.prestige-shell { width: calc(100% - 30px); }
	.prestige-header__inner { height: 83px; }
	.prestige-header__logo img { width: 175px; }
	.prestige-phone-pill { width: 44px; height: 44px; padding: 0; border-color: rgba(233,163,12,.65); }
	.prestige-phone-pill span { display: none; }
	.prestige-phone-pill .prestige-icon { width: 21px; height: 21px; }
	.prestige-book-button { display: none; }
	.prestige-mobile-menu { grid-template-columns: 1fr 1fr; }
	.prestige-hero { height: 544px; margin-bottom: 255px; background-position: 64% center; }
	.prestige-hero__shade { background: linear-gradient(90deg,rgba(0,16,31,.94) 0%,rgba(0,18,35,.72) 68%,rgba(0,18,35,.34) 100%); }
	.prestige-hero__copy { top: 31px; left: 4px; width: calc(100% - 8px); }
	.prestige-hero__eyebrow { margin-bottom: 14px; padding: 6px 10px; font-size: 10px; }
	.prestige-hero__copy h1 { width: 360px; max-width: 90%; font-size: 29px; line-height: 1.22; }
	.prestige-hero__lead { width: 360px; max-width: 88%; margin: 10px 0 19px; font-size: 12px; line-height: 1.65; }
	.prestige-hero__proof { gap: 15px; }
	.prestige-hero__proof span { min-width: 0; gap: 7px; }
	.prestige-hero__proof .prestige-icon { width: 24px; height: 24px; }
	.prestige-hero__proof strong { font-size: 9px; }
	.prestige-quote-card { top: 317px; bottom: auto; left: 0; right: 0; min-height: 455px; grid-template-columns: 1fr; gap: 15px; padding: 10px 10px 15px; border-radius: 11px; }
	.prestige-service-tabs { grid-template-columns: repeat(4,1fr); min-height: 68px; background: #fff; border-bottom: 1px solid #edf0f2; border-radius: 0; }
	.prestige-service-tabs button { min-height: 68px; flex-direction: column; justify-content: center; gap: 5px; padding: 6px 3px; border-right: 1px solid #e7eaee; text-align: center; font-size: 9px; line-height: 1.25; }
	.prestige-service-tabs button:last-child { border-right: 0; }
	.prestige-service-tabs button span br { display: inline; }
	.prestige-service-tabs button .prestige-icon { width: 21px; height: 21px; }
	.prestige-quote-fields { grid-template-columns: 1fr 1fr; gap: 11px; }
	.prestige-field--pickup,
	.prestige-field--dropoff,
	.prestige-field--passengers,
	.prestige-quote-submit { grid-column: 1 / -1; }
	.prestige-field--compact { grid-column: span 1; min-height: 52px; }
	.prestige-field > span:first-child:not(.prestige-field__icon) { margin-bottom: 6px; font-size: 10px; }
	.prestige-input-wrap input { height: 40px; }
	.prestige-field--compact strong { font-size: 10px; }
	.prestige-field--compact input,
	.prestige-field--compact select { font-size: 10px; }
	.prestige-quote-submit { gap: 5px; }
	.prestige-quote-submit button { height: 41px; }
	.prestige-quote-submit small { font-size: 9px; }
	.prestige-section { padding-block: 31px; }
	.prestige-heading { margin-bottom: 23px; }
	.prestige-heading h2 { margin-top: 8px; font-size: 21px; line-height: 1.28; }
	.prestige-heading h2::after { margin-top: 12px; }
	.prestige-kicker { font-size: 9px; }
	.prestige-benefits { padding-top: 18px; padding-bottom: 31px; }
	.prestige-benefit-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
	.prestige-benefit-card { min-height: 178px; padding: 19px 10px; }
	.prestige-benefit-card .prestige-round-icon { width: 54px; height: 54px; margin-bottom: 12px; }
	.prestige-benefit-card h3 { margin-bottom: 7px; font-size: 12px; }
	.prestige-benefit-card p { font-size: 9px; line-height: 1.55; }
	.prestige-services { padding-top: 30px; }
	.prestige-services { padding-bottom: 0; }
	.prestige-service-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
	.prestige-service-card { min-height: 82px; display: grid; grid-template-columns: 88px 45px 1fr; align-items: center; overflow: visible; }
	.prestige-service-card > img { width: 88px; height: 80px; border-radius: 7px 0 0 7px; }
	.prestige-service-card > .prestige-round-icon { position: static; width: 38px; height: 38px; transform: none; justify-self: center; }
	.prestige-service-card > .prestige-round-icon .prestige-icon { width: 19px; height: 19px; }
	.prestige-service-card > div { min-height: 0; padding: 9px 34px 9px 3px; text-align: left; }
	.prestige-service-card h3 { margin-bottom: 4px; font-size: 11px; }
	.prestige-service-card p { min-height: 0; margin: 0; font-size: 8.5px; line-height: 1.55; }
	.prestige-service-card a { position: absolute; top: 50%; right: 10px; width: 18px; height: 30px; transform: translateY(-50%); font-size: 0; }
	.prestige-service-card a .prestige-icon { width: 16px; height: 16px; }
	.prestige-view-services { display: flex; align-items: center; justify-content: center; gap: 20px; height: 42px; margin-top: 14px; border-radius: 7px; color: #fff; background: var(--prestige-navy); font-size: 10px; font-weight: 600; }
	.prestige-view-services .prestige-icon { width: 15px; height: 15px; }
	.prestige-stats { width: calc(100% - 30px); margin: 17px auto 0; padding: 12px 0; border-radius: 9px; }
	.prestige-stats > .prestige-shell { width: 100%; }
	.prestige-stats__grid { min-height: 126px; grid-template-columns: 1fr 1fr; }
	.prestige-stats article { min-height: 62px; gap: 11px; padding: 8px 11px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
	.prestige-stats article:nth-child(2n) { border-right: 0; }
	.prestige-stats article:nth-child(n+3) { border-bottom: 0; }
	.prestige-stat-icon { width: 39px; height: 39px; flex-basis: 39px; border-radius: 8px; }
	.prestige-stat-icon .prestige-icon { width: 21px; height: 21px; }
	.prestige-stats strong { font-size: 16px; }
	.prestige-stats b { font-size: 8px; }
	.prestige-stats p { display: none; }
	.prestige-testimonials { padding-top: 26px; }
	.prestige-slider-wrap { margin-inline: 32px; }
	.prestige-testimonial-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.prestige-testimonial-track::-webkit-scrollbar { display: none; }
	.prestige-testimonial-card { min-width: 100%; min-height: 137px; padding: 14px 18px; scroll-snap-align: start; }
	.prestige-testimonial-top { margin-bottom: 5px; }
	.prestige-testimonial-top > .prestige-icon { width: 19px; height: 19px; }
	.prestige-testimonial-top span { font-size: 11px; }
	.prestige-testimonial-card > p { min-height: 0; margin-bottom: 9px; font-size: 9px; line-height: 1.55; }
	.prestige-customer > span { width: 29px; height: 29px; font-size: 7px; }
	.prestige-customer strong { font-size: 8px; }
	.prestige-customer small { font-size: 7px; }
	.prestige-slider-arrow { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 25px; height: 38px; padding: 0; border: 0; color: var(--prestige-ink); background: transparent; transform: translateY(-50%); }
	.prestige-slider-prev { left: -36px; transform: translateY(-50%) rotate(180deg); }
	.prestige-slider-next { right: -36px; }
	.prestige-slider-arrow .prestige-icon { width: 22px; height: 22px; }
	.prestige-slider-dots { margin-top: 12px; }
	.prestige-slider-dots i { width: 7px; height: 7px; }
	.prestige-destinations { padding-top: 23px; }
	.prestige-destinations .prestige-heading h2 { max-width: 270px; margin-inline: auto; }
	.prestige-destination-track { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 3px; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.prestige-destination-track::-webkit-scrollbar { display: none; }
	.prestige-destination-card { flex: 0 0 116px; scroll-snap-align: start; }
	.prestige-destination-card > img { height: 105px; }
	.prestige-destination-card > .prestige-round-icon { top: 84px; width: 38px; height: 38px; }
	.prestige-destination-card > .prestige-round-icon .prestige-icon { width: 19px; height: 19px; }
	.prestige-destination-card > div { min-height: 75px; padding: 25px 7px 10px; }
	.prestige-destination-card h3 { min-height: 26px; font-size: 8px; }
	.prestige-destination-card p { display: none; }
	.prestige-destination-card a { font-size: 7px; }
	.prestige-destination-dots { display: flex; }
	.prestige-trust-row { padding: 20px 0; }
	.prestige-trust-row .prestige-shell { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
	.prestige-trust-row article { gap: 9px; padding: 0; border: 0; }
	.prestige-trust-row article > .prestige-icon { width: 38px; height: 38px; padding: 10px; }
	.prestige-trust-row strong { margin-bottom: 2px; font-size: 8px; }
	.prestige-trust-row p { font-size: 6.5px; line-height: 1.45; }
	.prestige-cta-section { padding: 25px 0 14px; }
	.prestige-cta { min-height: 191px; align-items: flex-start; padding: 20px; border-radius: 9px; background-position: 63% center; }
	.prestige-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,21,39,.98),rgba(0,29,53,.72) 63%,rgba(0,20,40,.2)); }
	.prestige-cta > div { z-index: 1; width: 72%; }
	.prestige-cta h2 { font-size: 18px; }
	.prestige-cta p { font-size: 9px; line-height: 1.65; }
	.prestige-cta a { height: 36px; padding: 0 13px; font-size: 9px; }
	.prestige-inner-hero { padding: 48px 0; }
	.prestige-inner-hero h1 { font-size: 30px; }
	.prestige-inner-section { padding: 32px 0; }
	.prestige-fleet-grid { grid-template-columns: 1fr; }
	.prestige-fleet-card > img { height: 215px; }
	.prestige-fleet-card p { min-height: 0; }
	.prestige-footer__main { display: block; min-height: 0; padding-top: 20px; padding-bottom: 15px; }
	.prestige-footer__brand { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; }
	.prestige-footer__brand > a img { width: 132px; }
	.prestige-footer__brand p { display: none; }
	.prestige-socials { gap: 8px; }
	.prestige-socials a { width: 27px; height: 27px; }
	.prestige-footer__column { border-top: 1px solid rgba(255,255,255,.15); }
	.prestige-footer__column h2 { display: none; }
	.prestige-footer__toggle { width: 100%; height: 35px; display: flex; align-items: center; justify-content: space-between; padding: 0; border: 0; color: #fff; background: transparent; font-size: 9px; font-weight: 600; text-align: left; }
	.prestige-footer__toggle .prestige-icon { width: 14px; height: 14px; transform: rotate(90deg); transition: .2s ease; }
	.prestige-footer__toggle[aria-expanded="true"] .prestige-icon { transform: rotate(-90deg); }
	.prestige-footer__column ul { display: none; padding: 0 0 9px; }
	.prestige-footer__column.is-open ul { display: block; }
	.prestige-footer__column li { margin-bottom: 7px; font-size: 9px; }
	.prestige-footer__bottom { min-height: 73px; flex-direction: column; justify-content: center; gap: 14px; text-align: center; }
	.prestige-footer__bottom p { font-size: 8px; }
	.prestige-footer__assurances { gap: 26px; }
	.prestige-footer__assurances span { font-size: 7px; }
	.prestige-footer__assurances .prestige-icon { width: 14px; height: 14px; }
	.prestige-quote-modal__panel { padding: 28px 18px 20px; }
	.prestige-quote-modal h2 { font-size: 21px; }
	.prestige-contact-grid { grid-template-columns: 1fr; gap: 11px; }
	.prestige-contact-grid__wide { grid-column: auto; }
}

@media (max-width: 420px) {
	.prestige-header__logo img { width: 160px; }
	.prestige-header__actions { gap: 4px; }
	.prestige-hero__proof { justify-content: space-between; }
	.prestige-benefit-card { min-height: 170px; }
	.prestige-service-card { grid-template-columns: 82px 42px 1fr; }
	.prestige-service-card > img { width: 82px; }
}

@media (max-width: 350px) {
	.prestige-header__logo img { width: 142px; }
	.prestige-phone-pill { width: 40px; height: 40px; }
	.prestige-menu-toggle { width: 40px; }
	.prestige-benefit-grid { grid-template-columns: 1fr; }
}

/* Account action and accessible off-canvas navigation */
.prestige-account-button {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--prestige-line);
	border-radius: 11px;
	color: var(--prestige-ink);
	background: #fff;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.prestige-account-button:hover,
.prestige-account-button:focus-visible {
	color: var(--prestige-navy);
	border-color: var(--prestige-gold);
	background: #fffaf0;
}
.prestige-account-button .prestige-icon { width: 20px; height: 20px; }
.prestige-mobile-menu__backdrop { display: none; }

@media (max-width: 1050px) {
	.prestige-mobile-menu {
		position: fixed;
		z-index: 10020;
		inset: 0 auto 0 0;
		width: min(400px, 90vw);
		height: 100dvh;
		max-height: none;
		display: flex;
		flex-direction: column;
		gap: 0;
		overflow: auto;
		padding: 0 24px 25px;
		border: 0;
		border-radius: 0 22px 22px 0;
		background: #fff;
		box-shadow: 24px 0 60px rgba(0,19,38,.22);
		transform: translateX(-105%);
		visibility: hidden;
		transition: transform .32s cubic-bezier(.22,.72,.28,1), visibility .32s;
	}
	.prestige-mobile-menu.is-open {
		max-height: none;
		padding: 0 24px 25px;
		border: 0;
		transform: translateX(0);
		visibility: visible;
	}
	.prestige-mobile-menu__backdrop {
		position: fixed;
		z-index: 10010;
		inset: 0;
		display: block;
		padding: 0;
		border: 0;
		background: rgba(0,17,33,.58);
		opacity: 0;
		visibility: hidden;
		cursor: default;
		transition: opacity .28s ease, visibility .28s;
		backdrop-filter: blur(2px);
	}
	.prestige-mobile-menu__backdrop.is-open { opacity: 1; visibility: visible; }
	.prestige-mobile-menu__top {
		min-height: 82px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		border-bottom: 1px solid var(--prestige-line);
	}
	.prestige-mobile-menu__top img { width: 172px; height: auto; }
	.prestige-mobile-menu__close {
		width: 42px;
		height: 42px;
		display: grid;
		place-items: center;
		padding: 0;
		border: 1px solid var(--prestige-line);
		border-radius: 50%;
		color: var(--prestige-ink);
		background: #fff;
		box-shadow: 0 6px 18px rgba(0,23,45,.08);
		cursor: pointer;
	}
	.prestige-mobile-menu__close .prestige-icon { width: 20px; height: 20px; }
	.prestige-mobile-menu__links { padding: 14px 0; }
	.prestige-mobile-menu__links > a {
		min-height: 51px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 8px 10px;
		border-radius: 10px;
		color: var(--prestige-ink);
		font-size: 13px;
		font-weight: 650;
	}
	.prestige-mobile-menu__links > a:hover,
	.prestige-mobile-menu__links > a:focus-visible { color: var(--prestige-navy); background: #fff7e5; }
	.prestige-mobile-menu__links > a > span { display: flex; align-items: center; gap: 13px; }
	.prestige-mobile-menu__links > a > span .prestige-icon {
		width: 19px;
		height: 19px;
		color: #b97800;
	}
	.prestige-mobile-menu__links > a > .prestige-icon { width: 15px; height: 15px; }
	.prestige-mobile-menu__book {
		min-height: 84px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		margin-top: auto;
		padding: 17px 18px;
		border-radius: 12px;
		color: #fff !important;
		background: linear-gradient(135deg,#001a33,#00345e);
		box-shadow: 0 12px 24px rgba(0,26,51,.18);
	}
	.prestige-mobile-menu__book span { display: grid; gap: 4px; }
	.prestige-mobile-menu__book strong { font-size: 14px; }
	.prestige-mobile-menu__book small { color: rgba(255,255,255,.76); font-size: 10px; font-weight: 500; }
	.prestige-mobile-menu__book > .prestige-icon { width: 19px; height: 19px; color: var(--prestige-gold-light); }
	.prestige-mobile-menu__contact {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-top: 20px;
	}
	.prestige-mobile-menu__contact > a { display: flex; align-items: center; gap: 8px; color: var(--prestige-ink); font-size: 11px; font-weight: 700; }
	.prestige-mobile-menu__contact > a .prestige-icon { width: 16px; height: 16px; color: #b97800; }
	.prestige-mobile-menu__contact .prestige-socials a { color: var(--prestige-ink); border-color: var(--prestige-line); }
}

@media (max-width: 782px) {
	.admin-bar .prestige-header { top: 0; }
	.prestige-header__inner { width: calc(100% - 24px); height: 70px; gap: 8px; }
	.prestige-header__logo img { width: 158px; }
	.prestige-header__actions { gap: 6px; }
	.prestige-phone-pill,
	.prestige-account-button,
	.prestige-menu-toggle { width: 38px; height: 38px; border-radius: 9px; }
	.prestige-phone-pill { border-color: rgba(233,163,12,.62); }
	.prestige-phone-pill .prestige-icon { width: 17px; height: 17px; }
	.prestige-account-button .prestige-icon { width: 18px; height: 18px; }
	.prestige-menu-toggle .prestige-icon { width: 24px; height: 24px; }
}

@media (max-width: 420px) {
	.prestige-header__logo img { width: 145px; }
	.prestige-mobile-menu { width: min(360px, 91vw); padding-inline: 20px; }
	.prestige-mobile-menu.is-open { padding-inline: 20px; }
}

@media (max-width: 360px) {
	.prestige-header__logo img { width: 122px; }
	.prestige-header__actions { gap: 4px; }
	.prestige-phone-pill,
	.prestige-account-button,
	.prestige-menu-toggle { width: 36px; height: 36px; }
}

/* Global FAQs */
.prestige-faq-section { padding: 54px 0 62px; background: #fff; }
.prestige-faq-shell { width: min(790px, calc(100% - 40px)); margin-inline: auto; }
.prestige-faq-heading { max-width: 690px; margin: 0 auto 30px; text-align: center; }
.prestige-faq-heading .prestige-kicker { margin: 0; color: #c37b00; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.prestige-faq-heading h2 { margin: 8px 0 10px; color: var(--prestige-ink); font-size: clamp(25px,2.25vw,34px); line-height: 1.22; letter-spacing: -.035em; }
.prestige-faq-heading h2::after { content: ""; display: block; width: 34px; height: 1px; margin: 14px auto 0; background: var(--prestige-gold); }
.prestige-faq-heading > p:last-child { margin: 13px 0 0; color: var(--prestige-muted); font-size: 12px; line-height: 1.7; }
.prestige-faq-list { display: grid; gap: 10px; }
.prestige-faq-item { overflow: hidden; border: 1px solid var(--prestige-line); border-radius: 12px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.prestige-faq-item.is-open { border-color: #edc66e; box-shadow: 0 8px 24px rgba(0,24,48,.06); }
.prestige-faq-item > button {
	width: 100%;
	min-height: 66px;
	display: grid;
	grid-template-columns: 42px minmax(0,1fr) 20px;
	align-items: center;
	gap: 14px;
	padding: 11px 17px;
	border: 0;
	color: var(--prestige-ink);
	background: #fff;
	text-align: left;
	font-size: 13px;
	font-weight: 650;
	cursor: pointer;
}
.prestige-faq-item__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #050b13; background: #fff7e5; }
.prestige-faq-item__icon .prestige-icon { width: 20px; height: 20px; color: #050b13; }
.prestige-faq-item__chevron { width: 16px; height: 16px; color: #050b13; transform: rotate(90deg); transition: transform .2s ease; }
.prestige-faq-item > button[aria-expanded="true"] .prestige-faq-item__chevron { transform: rotate(-90deg); }
.prestige-faq-answer { padding: 0 62px 17px 73px; }
.prestige-faq-answer p { margin: 0; color: var(--prestige-muted); font-size: 11px; line-height: 1.7; }

/* About page */
.prestige-about-hero {
	position: relative;
	min-height: 355px;
	background: #eaf0f4 url("../img/prestige-home/about-hero.png") 58% 57% / cover no-repeat;
}
.prestige-about-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.97) 27%,rgba(255,255,255,.72) 45%,rgba(255,255,255,.05) 72%); }
.prestige-about-hero__inner { position: relative; min-height: 355px; }
.prestige-about-hero__copy { position: absolute; top: 35px; left: 0; width: 395px; }
.prestige-about-hero__copy .prestige-kicker,
.prestige-about-mission__copy .prestige-kicker { margin: 0; color: #b97800; font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.prestige-about-hero__copy h1 { margin: 8px 0 8px; color: var(--prestige-ink); font-size: 29px; line-height: 1.18; letter-spacing: -.035em; }
.prestige-about-title-line { display: block; width: 29px; height: 2px; margin: 11px 0 13px; background: var(--prestige-gold); }
.prestige-about-hero__copy > p:last-child { margin: 0; color: #273649; font-size: 11px; line-height: 1.7; }
.prestige-about-benefits { position: absolute; left: 0; bottom: 30px; display: flex; gap: 31px; }
.prestige-about-benefits article { width: 145px; display: flex; align-items: flex-start; gap: 10px; }
.prestige-about-benefits article > .prestige-icon { width: 28px; height: 28px; color: #d89200; }
.prestige-about-benefits strong { display: block; margin-bottom: 3px; color: var(--prestige-ink); font-size: 9px; }
.prestige-about-benefits span { display: block; color: #344154; font-size: 8.5px; line-height: 1.45; }
.prestige-about-stats { color: #fff; background: radial-gradient(circle at 90% 20%,#07385e,transparent 35%), linear-gradient(105deg,#00172c,#002c4e); }
.prestige-about-stats > .prestige-shell { min-height: 118px; display: grid; grid-template-columns: repeat(4,1fr); }
.prestige-about-stats article { min-width: 0; display: flex; align-items: center; gap: 17px; padding: 20px 27px; border-right: 1px solid rgba(255,255,255,.16); }
.prestige-about-stats article:last-child { border-right: 0; }
.prestige-about-stats article > .prestige-icon { width: 42px; height: 42px; color: var(--prestige-gold-light); }
.prestige-about-stats strong { display: block; color: #fff; font-size: 24px; line-height: 1.05; }
.prestige-about-stats b { display: block; margin-top: 5px; color: var(--prestige-gold-light); font-size: 10px; }
.prestige-about-stats p { margin: 6px 0 0; color: rgba(255,255,255,.79); font-size: 8.5px; line-height: 1.5; }
.prestige-about-mission { padding: 27px 0 34px; background: #fff; }
.prestige-about-mission__grid { display: grid; grid-template-columns: 375px minmax(0,1fr); align-items: center; gap: 70px; }
.prestige-about-mission__copy { padding-left: 6px; }
.prestige-about-mission__copy h2 { margin: 8px 0 10px; color: var(--prestige-ink); font-size: 24px; line-height: 1.25; letter-spacing: -.03em; }
.prestige-about-mission__copy > p:not(.prestige-kicker) { margin: 0 0 15px; color: #485466; font-size: 10px; line-height: 1.75; }
.prestige-about-mission__copy > a { display: inline-flex; align-items: center; gap: 18px; min-height: 40px; padding: 0 17px; border-radius: 6px; color: #fff; background: var(--prestige-navy); font-size: 9px; font-weight: 700; }
.prestige-about-mission__copy > a .prestige-icon { width: 15px; height: 15px; }
.prestige-about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prestige-about-values article { overflow: hidden; border: 1px solid var(--prestige-line); border-radius: 8px; background: #fff; box-shadow: 0 7px 20px rgba(0,23,45,.05); }
.prestige-about-values article > img { width: 100%; height: 142px; object-fit: cover; }
.prestige-about-values article > div { min-height: 74px; display: flex; align-items: center; gap: 12px; padding: 8px 15px; }
.prestige-about-values article > div > span { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; margin-top: -28px; border: 1px solid #eadfca; border-radius: 50%; color: var(--prestige-ink); background: #fffaf0; }
.prestige-about-values article > div > span .prestige-icon { width: 22px; height: 22px; }
.prestige-about-values p { margin: 0; color: #4d5969; font-size: 8px; line-height: 1.55; }
.prestige-about-values strong { display: block; margin-bottom: 4px; color: var(--prestige-ink); font-size: 9px; }

/* Standalone account and authentication */
.prestige-auth-page { padding: 42px 20px 54px; background: #f4f6f8; }
.prestige-auth-shell { width: min(1040px,100%); min-height: 630px; display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; margin: 0 auto; border: 1px solid var(--prestige-line); border-radius: 20px; background: #fff; box-shadow: 0 24px 65px rgba(0,24,48,.12); }
.prestige-auth-visual { position: relative; min-height: 630px; color: #fff; background: linear-gradient(180deg,rgba(0,18,35,.38),rgba(0,19,37,.96)), url("../img/prestige-home/about-hero.png") 66% center / cover no-repeat; }
.prestige-auth-visual__content { position: absolute; inset: auto 38px 45px; }
.prestige-auth-visual__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(245,181,27,.55); border-radius: 999px; color: #fff; background: rgba(0,18,35,.4); font-size: 9px; }
.prestige-auth-visual__badge .prestige-icon { width: 14px; height: 14px; color: var(--prestige-gold-light); }
.prestige-auth-visual h1 { margin: 16px 0 12px; color: #fff; font-size: 36px; line-height: 1.16; letter-spacing: -.04em; }
.prestige-auth-visual p { max-width: 360px; margin: 0; color: rgba(255,255,255,.79); font-size: 11px; line-height: 1.7; }
.prestige-auth-visual__proof { display: flex; gap: 22px; margin-top: 27px; }
.prestige-auth-visual__proof span { display: flex; align-items: center; gap: 8px; }
.prestige-auth-visual__proof .prestige-icon { width: 22px; height: 22px; color: var(--prestige-gold-light); }
.prestige-auth-visual__proof strong { color: #fff; font-size: 8px; line-height: 1.4; }
.prestige-auth-card { width: min(440px,calc(100% - 52px)); align-self: center; justify-self: center; padding: 26px 0; }
.prestige-auth-card__brand img { width: 176px; height: auto; margin: 0 auto 22px; }
.prestige-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 27px; padding: 4px; border-radius: 10px; background: #f0f3f6; }
.prestige-auth-tabs button { height: 40px; border: 0; border-radius: 7px; color: var(--prestige-muted); background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.prestige-auth-tabs button.is-active { color: var(--prestige-ink); background: #fff; box-shadow: 0 3px 10px rgba(0,23,45,.08); }
.prestige-auth-view { animation: prestigeAuthIn .22s ease; }
@keyframes prestigeAuthIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.prestige-auth-view .prestige-kicker { margin: 0 0 7px; color: #b97800; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.prestige-auth-view h2 { margin: 0; color: var(--prestige-ink); font-size: 26px; line-height: 1.22; letter-spacing: -.035em; }
.prestige-auth-intro { margin: 8px 0 22px; color: var(--prestige-muted); font-size: 11px; line-height: 1.65; }
.prestige-auth-provider,
.prestige-auth-submit { width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 10px; font-size: 12px; font-weight: 700; cursor: pointer; }
.prestige-auth-provider { border: 1px solid #cbd2da; color: var(--prestige-ink); background: #fff; }
.prestige-auth-provider:hover { border-color: var(--prestige-gold); background: #fffaf0; }
.prestige-auth-provider .prestige-icon { width: 19px; height: 19px; }
.prestige-google-mark { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--prestige-line); border-radius: 50%; color: var(--prestige-navy); font-size: 13px; font-weight: 800; }
.prestige-auth-divider { height: 38px; display: flex; align-items: center; gap: 12px; color: #8b94a0; font-size: 9px; text-transform: uppercase; }
.prestige-auth-divider::before,
.prestige-auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--prestige-line); }
.prestige-auth-view form { display: grid; gap: 15px; }
.prestige-auth-view label { display: grid; gap: 7px; color: var(--prestige-ink); font-size: 10px; font-weight: 700; }
.prestige-auth-view label small { margin-left: 4px; color: #87909b; font-size: 8px; font-weight: 500; }
.prestige-auth-input { height: 50px; display: flex; align-items: center; gap: 11px; padding: 0 14px; border: 1px solid #cfd6de; border-radius: 9px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.prestige-auth-input:focus-within { border-color: var(--prestige-gold); box-shadow: 0 0 0 3px rgba(233,163,12,.1); }
.prestige-auth-input .prestige-icon { width: 18px; height: 18px; color: var(--prestige-ink); }
.prestige-auth-input input { min-width: 0; flex: 1; height: 46px; padding: 0; border: 0; outline: 0; color: var(--prestige-ink); background: transparent; font-size: 11px; }
.prestige-auth-submit { border: 0; color: #fff; background: var(--prestige-navy); box-shadow: 0 8px 18px rgba(0,26,51,.14); }
.prestige-auth-submit:hover { background: #062d52; }
.prestige-auth-submit:disabled { opacity: .7; cursor: wait; }
.prestige-auth-submit .prestige-icon { width: 17px; height: 17px; }
.prestige-auth-link,
.prestige-auth-back { width: max-content; padding: 0; border: 0; color: #9a6500; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.prestige-auth-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 17px; color: var(--prestige-muted); }
.prestige-auth-back .prestige-icon { width: 14px; height: 14px; }
.prestige-auth-link { margin-top: -4px; }
.prestige-auth-message { display: none; margin: -12px 0 18px; padding: 10px 12px; border-radius: 8px; font-size: 10px; line-height: 1.5; }
.prestige-auth-message.is-error { display: block; color: #6b4200; border: 1px solid #e4bf70; background: #fff8e8; }
.prestige-auth-message.is-success { display: block; color: #0c5133; border: 1px solid #aed7c2; background: #effaf4; }
.prestige-auth-code-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 50%; color: var(--prestige-navy); background: #fff4d8; }
.prestige-auth-code-icon .prestige-icon { width: 24px; height: 24px; }
.prestige-auth-code-label { text-align: center; }
.prestige-auth-code { width: 100%; height: 58px; padding: 0 8px; border: 1px solid #cfd6de; border-radius: 9px; outline: 0; color: var(--prestige-ink); background: #fff; font-size: 24px; font-weight: 700; letter-spacing: .55em; text-align: center; }
.prestige-auth-code:focus { border-color: var(--prestige-gold); box-shadow: 0 0 0 3px rgba(233,163,12,.1); }
.prestige-auth-privacy { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 24px 0 0; color: #7b8592; font-size: 8px; }
.prestige-auth-privacy .prestige-icon { width: 13px; height: 13px; color: #9a6500; }

.prestige-account-dashboard { padding: 54px 0 65px; background: #f5f7f9; }
.prestige-account-dashboard__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.prestige-account-dashboard__header .prestige-kicker { margin: 0; color: #b97800; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.prestige-account-dashboard__header h1 { margin: 7px 0 6px; font-size: 34px; letter-spacing: -.04em; }
.prestige-account-dashboard__header p:last-child { margin: 0; color: var(--prestige-muted); font-size: 11px; }
.prestige-account-logout { min-height: 40px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid var(--prestige-line); border-radius: 8px; color: var(--prestige-ink); background: #fff; font-size: 10px; font-weight: 700; }
.prestige-account-logout .prestige-icon { width: 16px; height: 16px; }
.prestige-account-dashboard__grid { display: grid; grid-template-columns: 300px minmax(0,1fr); align-items: start; gap: 23px; }
.prestige-profile-card,
.prestige-account-quotes { border: 1px solid var(--prestige-line); border-radius: 14px; background: #fff; box-shadow: 0 10px 30px rgba(0,24,48,.05); }
.prestige-profile-card { padding: 24px; }
.prestige-profile-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--prestige-navy); background: #fff4d8; }
.prestige-profile-card__icon .prestige-icon { width: 25px; height: 25px; }
.prestige-profile-card h2 { margin: 15px 0 17px; font-size: 18px; }
.prestige-profile-card dl { margin: 0; }
.prestige-profile-card dl > div { padding: 11px 0; border-top: 1px solid #edf0f3; }
.prestige-profile-card dt { margin-bottom: 3px; color: #77818d; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.prestige-profile-card dd { margin: 0; overflow-wrap: anywhere; color: var(--prestige-ink); font-size: 10px; font-weight: 600; }
.prestige-account-quotes { padding: 24px; }
.prestige-account-quotes__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.prestige-account-quotes__heading .prestige-kicker { margin: 0; color: #b97800; font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.prestige-account-quotes__heading h2 { margin: 4px 0 0; font-size: 20px; }
.prestige-account-quotes__heading > a,
.prestige-account-empty > a { display: inline-flex; align-items: center; gap: 10px; min-height: 38px; padding: 0 13px; border-radius: 7px; color: #fff; background: var(--prestige-navy); font-size: 9px; font-weight: 700; }
.prestige-account-quotes__heading > a .prestige-icon,
.prestige-account-empty > a .prestige-icon { width: 14px; height: 14px; }
.prestige-account-empty { padding: 42px 20px; border: 1px dashed #d4dae1; border-radius: 10px; text-align: center; }
.prestige-account-empty > .prestige-icon { width: 40px; height: 40px; color: #b97800; }
.prestige-account-empty h3 { margin: 10px 0 5px; font-size: 15px; }
.prestige-account-empty p { margin: 0 0 15px; color: var(--prestige-muted); font-size: 10px; }
.prestige-account-empty > a { width: max-content; margin: auto; }
.prestige-account-quote-list { display: grid; gap: 10px; }
.prestige-account-quote-list article { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.95fr); align-items: center; gap: 16px; padding: 16px; border: 1px solid #e4e8ed; border-radius: 10px; }
.prestige-account-quote-list__route { display: flex; align-items: flex-start; gap: 10px; }
.prestige-account-quote-list__route > span { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; color: var(--prestige-navy); background: #fff4d8; }
.prestige-account-quote-list__route .prestige-icon { width: 17px; height: 17px; }
.prestige-account-quote-list__route h3 { margin: 0 0 4px; font-size: 11px; }
.prestige-account-quote-list__route p { margin: 0; color: var(--prestige-muted); font-size: 9px; }
.prestige-account-quote-list__meta { display: flex; flex-wrap: wrap; gap: 7px 13px; color: #566170; font-size: 8px; }
.prestige-account-quote-list__meta span { display: inline-flex; align-items: center; gap: 4px; }
.prestige-account-quote-list__meta .prestige-icon { width: 13px; height: 13px; }
.prestige-account-status { position: absolute; top: 8px; right: 9px; color: #8b5c00; font-size: 7px; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 900px) {
	.prestige-about-mission__grid { grid-template-columns: 310px minmax(0,1fr); gap: 30px; }
	.prestige-about-stats article { padding-inline: 15px; }
	.prestige-auth-shell { grid-template-columns: .8fr 1.2fr; }
	.prestige-auth-card { width: min(420px,calc(100% - 38px)); }
}

@media (max-width: 782px) {
	.prestige-faq-section { padding: 37px 0 43px; }
	.prestige-faq-shell { width: calc(100% - 30px); }
	.prestige-faq-heading { margin-bottom: 21px; }
	.prestige-faq-heading h2 { margin-top: 7px; font-size: 21px; }
	.prestige-faq-heading > p:last-child { padding-inline: 8px; font-size: 9px; }
	.prestige-faq-item > button { min-height: 61px; grid-template-columns: 37px minmax(0,1fr) 16px; gap: 11px; padding: 10px 12px; font-size: 10px; line-height: 1.45; }
	.prestige-faq-item__icon { width: 37px; height: 37px; }
	.prestige-faq-item__icon .prestige-icon { width: 18px; height: 18px; }
	.prestige-faq-answer { padding: 0 35px 14px 60px; }
	.prestige-faq-answer p { font-size: 9px; }

	.prestige-about-hero { min-height: 385px; margin-bottom: 78px; background-position: 62% center; }
	.prestige-about-hero__shade { background: linear-gradient(90deg,rgba(0,19,37,.94),rgba(0,24,45,.7) 63%,rgba(0,19,37,.35)); }
	.prestige-about-hero__inner { min-height: 385px; }
	.prestige-about-hero__copy { top: 27px; left: 8px; width: calc(100% - 16px); color: #fff; }
	.prestige-about-hero__copy .prestige-kicker { color: var(--prestige-gold-light); }
	.prestige-about-hero__copy h1 { max-width: 310px; color: #fff; font-size: 23px; }
	.prestige-about-hero__copy > p:last-child { max-width: 320px; color: rgba(255,255,255,.86); font-size: 9px; line-height: 1.7; }
	.prestige-about-benefits { left: 0; right: 0; bottom: -67px; min-height: 130px; gap: 0; padding: 18px 9px; border: 1px solid var(--prestige-line); border-radius: 11px; background: #fff; box-shadow: 0 10px 30px rgba(0,23,45,.1); }
	.prestige-about-benefits article { width: 33.333%; flex-direction: column; align-items: center; gap: 7px; padding: 0 7px; text-align: center; }
	.prestige-about-benefits article > .prestige-icon { width: 25px; height: 25px; }
	.prestige-about-benefits strong { font-size: 8px; }
	.prestige-about-benefits span { font-size: 7px; line-height: 1.5; }
	.prestige-about-stats { width: calc(100% - 30px); margin: 0 auto 0; border-radius: 10px; }
	.prestige-about-stats > .prestige-shell { width: 100%; min-height: 190px; grid-template-columns: 1fr 1fr; padding: 10px; }
	.prestige-about-stats article { min-height: 84px; gap: 11px; padding: 13px 9px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
	.prestige-about-stats article:nth-child(2n) { border-right: 0; }
	.prestige-about-stats article:nth-child(n+3) { border-bottom: 0; }
	.prestige-about-stats article > .prestige-icon { width: 31px; height: 31px; }
	.prestige-about-stats strong { font-size: 17px; }
	.prestige-about-stats b { font-size: 7.5px; }
	.prestige-about-stats p { font-size: 6.5px; }
	.prestige-about-mission { padding: 34px 0 27px; }
	.prestige-about-mission__grid { grid-template-columns: 1fr; gap: 24px; }
	.prestige-about-mission__copy { padding: 0; }
	.prestige-about-mission__copy h2 { font-size: 21px; }
	.prestige-about-mission__copy > p:not(.prestige-kicker) { font-size: 9px; }
	.prestige-about-values { grid-template-columns: 1fr 1fr; gap: 9px; }
	.prestige-about-values article > img { height: 112px; }
	.prestige-about-values article > div { min-height: 83px; align-items: flex-start; gap: 7px; padding: 8px; }
	.prestige-about-values article > div > span { width: 35px; height: 35px; flex-basis: 35px; margin-top: -24px; }
	.prestige-about-values p { font-size: 6.8px; }
	.prestige-about-values strong { font-size: 8px; }

	.prestige-auth-page { padding: 20px 15px 34px; }
	.prestige-auth-shell { min-height: 0; display: block; border-radius: 15px; }
	.prestige-auth-visual { min-height: 220px; background-position: 61% center; }
	.prestige-auth-visual__content { inset: auto 22px 22px; }
	.prestige-auth-visual h1 { margin: 11px 0 8px; font-size: 27px; }
	.prestige-auth-visual p { max-width: 310px; font-size: 9px; }
	.prestige-auth-visual__proof { display: none; }
	.prestige-auth-card { width: auto; padding: 25px 20px 22px; }
	.prestige-auth-card__brand img { width: 152px; margin-bottom: 18px; }
	.prestige-auth-tabs { margin-bottom: 23px; }
	.prestige-auth-view h2 { font-size: 22px; }
	.prestige-auth-intro { margin-bottom: 18px; font-size: 9.5px; }
	.prestige-auth-provider,
	.prestige-auth-submit { min-height: 47px; }

	.prestige-account-dashboard { padding: 35px 0 43px; }
	.prestige-account-dashboard__header { align-items: flex-start; }
	.prestige-account-dashboard__header h1 { font-size: 26px; }
	.prestige-account-dashboard__header p:last-child { max-width: 230px; font-size: 9px; }
	.prestige-account-dashboard__grid { grid-template-columns: 1fr; }
	.prestige-profile-card { padding: 19px; }
	.prestige-account-quotes { padding: 17px; }
	.prestige-account-quotes__heading { align-items: flex-start; }
	.prestige-account-quotes__heading > a { padding-inline: 10px; font-size: 8px; }
	.prestige-account-quote-list article { grid-template-columns: 1fr; gap: 10px; padding-top: 25px; }
}

@media (max-width: 430px) {
	.prestige-about-values { grid-template-columns: 1fr; }
	.prestige-about-values article > img { height: 160px; }
	.prestige-account-dashboard__header { display: grid; }
	.prestige-account-logout { width: max-content; }
	.prestige-account-quotes__heading { display: grid; }
	.prestige-account-quotes__heading > a { width: max-content; }
}

/* Shared inner-page heading */
.prestige-page-heading { margin-bottom: 25px; text-align: center; }
.prestige-page-heading .prestige-kicker { margin: 0; color: #c37b00; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.prestige-page-heading h2 { margin: 7px 0 0; color: var(--prestige-ink); font-size: 25px; line-height: 1.25; letter-spacing: -.035em; }

/* Contact page */
.prestige-contact-page { background: #fff; }
.prestige-contact-hero {
	position: relative;
	min-height: 176px;
	color: #fff;
	background: #001a33 url("../img/prestige-home/contact-hero-v2.png") 58% 60% / cover no-repeat;
}
.prestige-contact-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,20,39,.97) 0%,rgba(0,25,47,.82) 42%,rgba(0,17,32,.08) 78%); }
.prestige-contact-hero__inner { position: relative; min-height: 176px; }
.prestige-contact-hero__copy { position: absolute; top: 35px; left: 55px; }
.prestige-contact-hero__copy .prestige-kicker { margin: 0; color: var(--prestige-gold-light); font-size: 9px; font-weight: 700; }
.prestige-contact-hero__copy h1 { margin: 8px 0 9px; color: #fff; font-size: 33px; line-height: 1; letter-spacing: -.035em; }
.prestige-contact-hero__copy > p:last-child { margin: 0; color: rgba(255,255,255,.92); font-size: 11px; line-height: 1.7; }
.prestige-contact-main { padding: 22px 0 0; }
.prestige-contact-main__grid { display: grid; grid-template-columns: 44% 56%; align-items: stretch; }
.prestige-contact-card { border: 1px solid var(--prestige-line); background: #fff; box-shadow: 0 6px 20px rgba(0,24,48,.04); }
.prestige-contact-card--form { min-height: 336px; padding: 19px 22px; border-radius: 9px 0 0 9px; }
.prestige-contact-card header h2,
.prestige-contact-details h2 { margin: 0 0 5px; color: var(--prestige-ink); font-size: 16px; }
.prestige-contact-card header p { margin: 0 0 14px; color: var(--prestige-muted); font-size: 8.5px; }
.prestige-contact-card--form form { display: grid; gap: 8px; }
.prestige-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prestige-contact-card--form label { display: block; }
.prestige-contact-card--form input,
.prestige-contact-card--form textarea {
	width: 100%;
	border: 1px solid #dce2e8;
	border-radius: 5px;
	outline: 0;
	color: var(--prestige-ink);
	background: #fff;
	font-size: 9px;
	transition: border-color .2s, box-shadow .2s;
}
.prestige-contact-card--form input { height: 34px; padding: 0 10px; }
.prestige-contact-card--form textarea { min-height: 64px; resize: vertical; padding: 9px 10px; }
.prestige-contact-card--form input:focus,
.prestige-contact-card--form textarea:focus { border-color: var(--prestige-gold); box-shadow: 0 0 0 3px rgba(233,163,12,.1); }
.prestige-contact-card--form form > button {
	width: 188px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 0;
	border: 0;
	border-radius: 5px;
	color: #fff;
	background: var(--prestige-navy);
	font-size: 9px;
	font-weight: 700;
	cursor: pointer;
}
.prestige-contact-card--form form > button:disabled { opacity: .65; cursor: wait; }
.prestige-contact-card--form form > button .prestige-icon { width: 14px; height: 14px; }
.prestige-contact-form__privacy { display: flex; align-items: center; gap: 8px; margin: 0 0 0 3px; color: #7b8592; font-size: 7px; }
.prestige-contact-form__privacy .prestige-icon { width: 11px; height: 11px; }
.prestige-contact-form__message { display: none; padding: 8px 10px; border-radius: 5px; font-size: 8px; line-height: 1.45; }
.prestige-contact-form__message.is-success { display: block; color: #0c5133; border: 1px solid #aed7c2; background: #effaf4; }
.prestige-contact-form__message.is-error { display: block; color: #6b4200; border: 1px solid #e4bf70; background: #fff8e8; }
.prestige-contact-card--details { min-height: 336px; display: grid; grid-template-columns: 40% 60%; overflow: hidden; border-left: 0; border-radius: 0 9px 9px 0; }
.prestige-contact-details { padding: 19px 19px; }
.prestige-contact-details ul { display: grid; gap: 14px; margin: 14px 0 0; padding: 0; list-style: none; }
.prestige-contact-details li { display: flex; align-items: flex-start; gap: 10px; }
.prestige-contact-details li > span { width: 33px; height: 33px; flex: 0 0 33px; display: grid; place-items: center; border-radius: 50%; color: var(--prestige-gold-light); background: var(--prestige-navy); }
.prestige-contact-details li > span .prestige-icon { width: 17px; height: 17px; }
.prestige-contact-details li > div { display: grid; gap: 2px; }
.prestige-contact-details strong { color: var(--prestige-ink); font-size: 9px; }
.prestige-contact-details a,
.prestige-contact-details b { color: var(--prestige-ink); font-size: 9px; font-weight: 700; overflow-wrap: anywhere; }
.prestige-contact-details small { color: #6d7785; font-size: 7px; }
.prestige-contact-map { position: relative; min-height: 334px; overflow: hidden; }
.prestige-contact-map > img { width: 100%; height: 235px; object-fit: cover; filter: saturate(.55) brightness(1.06); }
.prestige-contact-map__pin { position: absolute; top: 101px; left: 48%; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; color: #fff; background: var(--prestige-navy); transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 5px 15px rgba(0,23,45,.28); }
.prestige-contact-map__pin .prestige-icon { width: 18px; height: 18px; transform: rotate(45deg); }
.prestige-contact-assist { min-height: 99px; display: flex; align-items: center; justify-content: center; gap: 17px; padding: 14px 22px; color: #fff; background: linear-gradient(120deg,#00172d,#003153); }
.prestige-contact-assist > .prestige-icon { width: 38px; height: 38px; }
.prestige-contact-assist > div { display: grid; gap: 3px; }
.prestige-contact-assist strong { color: #fff; font-size: 10px; }
.prestige-contact-assist span { color: rgba(255,255,255,.88); font-size: 8px; }
.prestige-contact-assist a { color: var(--prestige-gold-light); font-size: 10px; font-weight: 700; }
.prestige-contact-mobile-details,
.prestige-contact-mobile-assist { display: none; }

/* Airport transfers */
.prestige-airport-page { background: #fff; }
.prestige-airport-hero {
	position: relative;
	min-height: 274px;
	margin-bottom: 95px;
	color: #fff;
	background: #00172d url("../img/prestige-home/airport-hero-v2.png") 59% 56% / cover no-repeat;
}
.prestige-airport-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,20,39,.98),rgba(0,24,45,.85) 42%,rgba(0,16,31,.08) 78%); }
.prestige-airport-hero__inner { position: relative; min-height: 274px; }
.prestige-airport-hero__copy { position: absolute; top: 25px; left: 12px; }
.prestige-airport-hero__copy .prestige-kicker { margin: 0; color: var(--prestige-gold-light); font-size: 9px; font-weight: 700; }
.prestige-airport-hero__copy h1 { margin: 8px 0 8px; color: #fff; font-size: 29px; line-height: 1.2; letter-spacing: -.035em; }
.prestige-airport-hero__copy > p { margin: 0; color: rgba(255,255,255,.9); font-size: 10px; line-height: 1.65; }
.prestige-airport-hero__proof { display: flex; gap: 30px; margin-top: 17px; }
.prestige-airport-hero__proof article { display: flex; align-items: flex-start; gap: 9px; min-width: 120px; }
.prestige-airport-hero__proof article > .prestige-icon { width: 24px; height: 24px; color: var(--prestige-gold-light); }
.prestige-airport-hero__proof strong { display: block; margin-bottom: 3px; color: #fff; font-size: 8px; }
.prestige-airport-hero__proof span { display: block; color: rgba(255,255,255,.82); font-size: 6.8px; line-height: 1.5; }
.prestige-airport-quote {
	position: absolute;
	z-index: 4;
	left: 0;
	right: 0;
	bottom: -91px;
	min-height: 142px;
	padding: 12px 16px 13px;
	border: 1px solid var(--prestige-line);
	border-radius: 10px;
	background: rgba(255,255,255,.99);
	box-shadow: 0 11px 28px rgba(0,24,48,.12);
}
.prestige-airport-trip-tabs { width: 181px; height: 29px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 7px; padding: 2px; border-radius: 5px; background: #f3f5f7; }
.prestige-airport-trip-tabs button { border: 0; border-radius: 4px; color: var(--prestige-ink); background: transparent; font-size: 7.5px; font-weight: 700; cursor: pointer; }
.prestige-airport-trip-tabs button.is-active { color: #fff; background: var(--prestige-navy); }
.prestige-airport-quote__fields { display: grid; grid-template-columns: 1.75fr 1.75fr 1.35fr 1.35fr .85fr 1.1fr; align-items: end; gap: 9px; }
.prestige-airport-quote__fields label { min-width: 0; display: grid; gap: 4px; color: var(--prestige-ink); font-size: 7px; font-weight: 600; }
.prestige-airport-input { height: 33px; min-width: 0; display: flex; align-items: center; gap: 7px; padding: 0 9px; border: 1px solid #dce2e8; border-radius: 5px; background: #fff; }
.prestige-airport-input .prestige-icon { width: 13px; height: 13px; color: #738092; }
.prestige-airport-input input,
.prestige-airport-input select { width: 100%; min-width: 0; height: 30px; padding: 0; border: 0; outline: 0; color: #657184; background: transparent; font-size: 8px; }
.prestige-airport-quote__fields > button { height: 34px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 5px; color: #07162c; background: linear-gradient(#ffc23a,#f1a211); font-size: 9px; font-weight: 800; cursor: pointer; }
.prestige-airport-quote__fields > button .prestige-icon { width: 14px; height: 14px; }
.prestige-airport-quote__assurances { width: 58%; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 8px; }
.prestige-airport-quote__assurances > span { display: flex; align-items: center; gap: 7px; }
.prestige-airport-quote__assurances .prestige-icon { width: 17px; height: 17px; color: #c98200; }
.prestige-airport-quote__assurances small { display: grid; gap: 1px; color: #667283; font-size: 6px; }
.prestige-airport-quote__assurances strong { color: var(--prestige-ink); font-size: 7px; }
.prestige-airports { padding: 0 0 30px; }
.prestige-airports__track { display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; }
.prestige-airport-card { overflow: hidden; border: 1px solid var(--prestige-line); border-radius: 7px; background: #fff; box-shadow: 0 5px 16px rgba(0,24,48,.04); }
.prestige-airport-card > img { width: 100%; height: 66px; object-fit: cover; }
.prestige-airport-card > div { padding: 10px 11px 9px; }
.prestige-airport-card h3 { min-height: 25px; margin: 0 0 4px; color: var(--prestige-ink); font-size: 8px; line-height: 1.35; }
.prestige-airport-card h3 span { font-weight: 500; }
.prestige-airport-card strong { display: block; color: #c98200; font-size: 8px; }
.prestige-airport-card p { margin: 7px 0 9px; color: #687485; font-size: 6.5px; white-space: nowrap; }
.prestige-airport-card a { height: 29px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 4px; color: var(--prestige-ink); background: #f7f8f9; font-size: 7px; font-weight: 700; }
.prestige-airport-card a .prestige-icon { width: 11px; height: 11px; }
.prestige-airports__all { width: 144px; height: 28px; display: flex; align-items: center; justify-content: center; margin: 15px auto 0; border: 1px solid var(--prestige-gold); border-radius: 5px; color: var(--prestige-ink); font-size: 7px; }
.prestige-airport-dots { display: none; align-items: center; justify-content: center; gap: 6px; margin-top: 11px; }
.prestige-airport-dots i,
.prestige-fleet-dots i { width: 5px; height: 5px; border-radius: 50%; background: #d7dce2; }
.prestige-airport-dots i.is-active,
.prestige-fleet-dots i.is-active { background: var(--prestige-gold); }
.prestige-airport-trust { padding: 20px 0 24px; border-top: 1px solid #eef1f4; }
.prestige-airport-trust .prestige-shell { display: grid; grid-template-columns: repeat(4,1fr); }
.prestige-airport-trust article { display: flex; align-items: center; gap: 15px; padding: 0 17px; border-right: 1px solid var(--prestige-line); }
.prestige-airport-trust article:last-child { border-right: 0; }
.prestige-airport-trust article > .prestige-icon { width: 31px; height: 31px; color: var(--prestige-ink); }
.prestige-airport-trust strong { display: block; margin-bottom: 3px; color: var(--prestige-ink); font-size: 8px; }
.prestige-airport-trust p { margin: 0; color: #606c7d; font-size: 6.5px; line-height: 1.5; }

/* Corporate page */
.prestige-corporate-page { background: #fff; }
.prestige-corporate-hero {
	position: relative;
	min-height: 285px;
	color: #fff;
	background: #00172c url("../img/prestige-home/corporate-hero-v2.png") 58% 52% / cover no-repeat;
}
.prestige-corporate-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,16,31,.98),rgba(0,20,38,.82) 43%,rgba(0,13,25,.08) 76%); }
.prestige-corporate-hero__inner { position: relative; min-height: 285px; }
.prestige-corporate-hero__copy { position: absolute; top: 27px; left: 25px; }
.prestige-corporate-hero__copy .prestige-kicker { margin: 0; color: var(--prestige-gold-light); font-size: 8px; font-weight: 700; }
.prestige-corporate-hero__copy h1 { margin: 10px 0 9px; color: #fff; font-size: 29px; line-height: 1.2; letter-spacing: -.035em; }
.prestige-corporate-hero__copy > p { margin: 0; color: rgba(255,255,255,.88); font-size: 8.5px; line-height: 1.65; }
.prestige-corporate-proof { display: flex; gap: 23px; margin-top: 25px; }
.prestige-corporate-proof article { min-width: 105px; display: flex; align-items: flex-start; gap: 9px; }
.prestige-corporate-proof article > .prestige-icon { width: 23px; height: 23px; color: var(--prestige-gold-light); }
.prestige-corporate-proof strong { display: block; margin-bottom: 3px; color: #fff; font-size: 7.5px; }
.prestige-corporate-proof span { color: rgba(255,255,255,.8); font-size: 6.2px; line-height: 1.45; }
.prestige-corporate-intro { padding: 25px 0 14px; }
.prestige-corporate-intro__grid { display: grid; grid-template-columns: 31% 1fr; align-items: center; gap: 32px; }
.prestige-corporate-intro__copy .prestige-kicker { margin: 0; color: #c37b00; font-size: 8px; font-weight: 700; }
.prestige-corporate-intro__copy h2 { margin: 7px 0 10px; color: var(--prestige-ink); font-size: 24px; line-height: 1.2; letter-spacing: -.035em; }
.prestige-corporate-intro__copy > p { margin: 0; color: #4d5968; font-size: 8px; line-height: 1.65; }
.prestige-corporate-intro__copy ul,
.prestige-corporate-benefits-photo aside ul { display: grid; gap: 8px; margin: 12px 0 14px; padding: 0; list-style: none; }
.prestige-corporate-intro__copy li,
.prestige-corporate-benefits-photo aside li { position: relative; padding-left: 19px; color: #344154; font-size: 7px; }
.prestige-corporate-intro__copy li::before,
.prestige-corporate-benefits-photo aside li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 12px; height: 12px; display: grid; place-items: center; border: 1px solid var(--prestige-gold); border-radius: 50%; color: #b97800; font-size: 7px; font-weight: 800; }
.prestige-corporate-intro__copy > a { width: max-content; min-height: 34px; display: inline-flex; align-items: center; gap: 13px; padding: 0 15px; border-radius: 4px; color: #fff; background: var(--prestige-navy); font-size: 7.5px; font-weight: 700; }
.prestige-corporate-intro__copy > a .prestige-icon { width: 13px; height: 13px; }
.prestige-corporate-benefits-photo { position: relative; min-height: 216px; overflow: visible; }
.prestige-corporate-benefits-photo > img { width: 78%; height: 216px; object-fit: cover; border-radius: 7px; }
.prestige-corporate-benefits-photo aside { position: absolute; right: 0; top: 41px; width: 40%; min-height: 169px; padding: 19px 20px; border-radius: 7px; color: #fff; background: linear-gradient(135deg,#00172d,#002c50); box-shadow: 0 12px 30px rgba(0,21,41,.18); }
.prestige-corporate-benefits-photo aside h3 { margin: 0; color: #fff; font-size: 11px; }
.prestige-corporate-benefits-photo aside ul { margin-bottom: 0; }
.prestige-corporate-benefits-photo aside li { color: rgba(255,255,255,.9); font-size: 7px; }
.prestige-corporate-benefits-photo aside li::before { color: #fff; border: 0; background: var(--prestige-gold); }
.prestige-corporate-services { padding: 11px 0 14px; }
.prestige-corporate-services .prestige-page-heading { margin-bottom: 15px; }
.prestige-corporate-services__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 11px; }
.prestige-corporate-services__grid article { min-height: 119px; padding: 13px 15px; border: 1px solid var(--prestige-line); border-radius: 6px; background: #fff; }
.prestige-corporate-services__grid article > span { display: block; width: 42px; position: relative; color: var(--prestige-ink); }
.prestige-corporate-services__grid article > span::after { content: ""; position: absolute; top: 13px; left: 28px; width: 18px; height: 1px; background: var(--prestige-gold); }
.prestige-corporate-services__grid .prestige-icon { width: 24px; height: 24px; }
.prestige-corporate-services__grid h3 { margin: 8px 0 6px; color: var(--prestige-ink); font-size: 8px; }
.prestige-corporate-services__grid p { margin: 0; color: #596576; font-size: 6.5px; line-height: 1.6; }
.prestige-corporate-logos { padding: 14px 0 18px; color: #fff; background: radial-gradient(circle at 82% 10%,#06365c,transparent 40%),linear-gradient(100deg,#00172d,#002a49); }
.prestige-corporate-logos p { margin: 0 0 14px; color: var(--prestige-gold-light); font-size: 7px; font-weight: 700; text-align: center; }
.prestige-corporate-logos .prestige-shell > div { display: grid; grid-template-columns: repeat(6,1fr); align-items: center; gap: 20px; }
.prestige-corporate-logos span { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; color: rgba(255,255,255,.9); font-size: 16px; line-height: .85; text-align: center; }
.prestige-corporate-logos span b { color: #fff; font-size: 18px; }
.prestige-corporate-logos small { width: 100%; display: block; color: rgba(255,255,255,.58); font-size: 5px; letter-spacing: .12em; }
.prestige-corporate-cta { padding: 12px 0; background: #fff; }
.prestige-corporate-cta .prestige-shell { min-height: 70px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; padding: 10px 22px; border-radius: 8px; background: #fbf7ef; }
.prestige-corporate-cta__icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--prestige-ink); background: #fff0d1; }
.prestige-corporate-cta__icon .prestige-icon { width: 23px; height: 23px; }
.prestige-corporate-cta h2 { margin: 0 0 3px; font-size: 15px; }
.prestige-corporate-cta p { margin: 0; color: #4e5a69; font-size: 8px; }
.prestige-corporate-cta a { min-height: 34px; display: inline-flex; align-items: center; gap: 13px; padding: 0 19px; border-radius: 5px; color: #07162c; background: linear-gradient(#ffc23a,#f1a211); font-size: 8px; font-weight: 800; }
.prestige-corporate-cta a .prestige-icon { width: 13px; height: 13px; }

/* Fleet page */
.prestige-fleet-page { background: #fff; }
.prestige-fleet-hero {
	position: relative;
	min-height: 259px;
	color: #fff;
	background: #00172d url("../img/prestige-home/fleet-hero-v2.png") 58% 56% / cover no-repeat;
}
.prestige-fleet-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,17,33,.98),rgba(0,23,43,.82) 43%,rgba(0,15,29,.08) 80%); }
.prestige-fleet-hero__inner { position: relative; min-height: 259px; }
.prestige-fleet-hero__copy { position: absolute; top: 29px; left: 14px; }
.prestige-fleet-hero__copy .prestige-kicker { margin: 0; color: var(--prestige-gold-light); font-size: 8px; font-weight: 700; }
.prestige-fleet-hero__copy h1 { margin: 10px 0 11px; color: #fff; font-size: 30px; line-height: 1.2; letter-spacing: -.035em; }
.prestige-fleet-hero__copy > p { margin: 0; color: rgba(255,255,255,.88); font-size: 9px; line-height: 1.65; }
.prestige-fleet-hero__proof { display: flex; gap: 18px; margin-top: 22px; }
.prestige-fleet-hero__proof article { min-width: 113px; display: flex; align-items: center; gap: 8px; }
.prestige-fleet-hero__proof article > .prestige-icon { width: 25px; height: 25px; padding: 4px; border: 1px solid var(--prestige-gold); border-radius: 50%; color: var(--prestige-gold-light); }
.prestige-fleet-hero__proof strong { display: block; margin-bottom: 2px; color: #fff; font-size: 7px; }
.prestige-fleet-hero__proof span { color: rgba(255,255,255,.8); font-size: 6px; }
.prestige-fleet-showcase { padding: 18px 0 14px; }
.prestige-fleet-showcase .prestige-page-heading { margin-bottom: 17px; }
.prestige-fleet-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.prestige-vehicle-card { overflow: hidden; border: 1px solid var(--prestige-line); border-radius: 7px; background: #fff; box-shadow: 0 6px 18px rgba(0,24,48,.05); }
.prestige-vehicle-card > img { width: 100%; height: 103px; object-fit: cover; background: #f8f9fa; }
.prestige-vehicle-card > div { padding: 10px 13px 12px; }
.prestige-vehicle-card h3 { margin: 0 0 7px; color: var(--prestige-ink); font-size: 10px; }
.prestige-vehicle-card__capacity { min-height: 15px !important; display: flex; gap: 11px; margin: 0 0 8px !important; color: #465365 !important; white-space: nowrap; }
.prestige-vehicle-card__capacity span { display: inline-flex; align-items: center; gap: 4px; font-size: 6.4px; }
.prestige-vehicle-card__capacity .prestige-icon { width: 12px; height: 12px; color: #bd7900; }
.prestige-vehicle-card > div > p:not(.prestige-vehicle-card__capacity) { min-height: 43px; margin: 0 0 10px; color: #596576; font-size: 6.8px; line-height: 1.55; }
.prestige-vehicle-card a { height: 30px; display: flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid #e6e9ed; border-radius: 4px; color: var(--prestige-ink); font-size: 7px; font-weight: 700; }
.prestige-vehicle-card a .prestige-icon { width: 12px; height: 12px; }
.prestige-fleet-dots { display: none; justify-content: center; gap: 6px; margin: 11px 0; }
.prestige-fleet-help { width: 238px; height: 31px; display: flex; align-items: center; justify-content: center; gap: 12px; margin: 19px auto 0; border: 1px solid var(--prestige-gold); border-radius: 5px; color: var(--prestige-ink); font-size: 7px; }
.prestige-fleet-help .prestige-icon { width: 12px; height: 12px; }
.prestige-fleet-trust { padding: 10px 0 7px; }
.prestige-fleet-trust .prestige-shell { display: grid; grid-template-columns: repeat(4,1fr); padding: 17px 20px; border-radius: 8px; background: linear-gradient(90deg,#f8f9fa,#fff); }
.prestige-fleet-trust article { display: flex; align-items: center; gap: 14px; padding: 0 14px; border-right: 1px solid var(--prestige-line); }
.prestige-fleet-trust article:last-child { border-right: 0; }
.prestige-fleet-trust article > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; color: var(--prestige-ink); background: #fff0d5; }
.prestige-fleet-trust article > span .prestige-icon { width: 22px; height: 22px; }
.prestige-fleet-trust strong { display: block; margin-bottom: 4px; color: var(--prestige-ink); font-size: 8px; }
.prestige-fleet-trust p { margin: 0; color: #687383; font-size: 6.3px; line-height: 1.5; }
.prestige-fleet-cta { padding: 5px 0 14px; }
.prestige-fleet-cta .prestige-shell { min-height: 87px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 17px; padding: 14px 31px; border-radius: 8px; color: #fff; background: radial-gradient(circle at 90% 0,#073b65,transparent 35%),linear-gradient(110deg,#00172d,#002c4e); }
.prestige-fleet-cta .prestige-shell > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(255,255,255,.06); }
.prestige-fleet-cta .prestige-shell > span .prestige-icon { width: 25px; height: 25px; }
.prestige-fleet-cta h2 { margin: 0 0 5px; color: #fff; font-size: 16px; }
.prestige-fleet-cta p { margin: 0; color: rgba(255,255,255,.82); font-size: 8px; }
.prestige-fleet-cta a { min-width: 181px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border-radius: 5px; color: #07162c; background: linear-gradient(#ffc23a,#f1a211); font-size: 8px; font-weight: 800; }
.prestige-fleet-cta a .prestige-icon { width: 13px; height: 13px; }

/* Authentic provider marks */
.prestige-auth-provider .prestige-provider-google,
.prestige-auth-provider .prestige-provider-email { width: 20px; height: 20px; flex: 0 0 20px; }
.prestige-auth-provider .prestige-provider-email { color: var(--prestige-ink); }

/* Google Places suggestions — kept above the quote modal and styled to match Prestige. */
.pac-container {
	z-index: 10060 !important;
	margin-top: 5px;
	border: 1px solid #dfe4ea;
	border-top: 2px solid var(--prestige-gold);
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 24, 48, .16);
	font-family: "Plus Jakarta Sans", sans-serif;
	overflow: hidden;
}
.pac-item {
	min-height: 47px;
	display: flex;
	align-items: center;
	padding: 8px 13px;
	border-top: 1px solid #eef1f4;
	color: #596576;
	font-family: inherit;
	font-size: 11px;
	line-height: 1.35;
	cursor: pointer;
}
.pac-item:first-child { border-top: 0; }
.pac-item:hover,
.pac-item-selected { background: #fff8e8; }
.pac-item-query { color: var(--prestige-ink); font-size: 12px; font-weight: 700; }
.pac-icon { margin-right: 10px; }
.pac-logo::after { margin: 6px 11px 8px; }
.prestige-address-autocomplete[data-prestige-places="ready"] { background-color: #fff; }

@media (max-width: 900px) {
	.prestige-contact-main__grid { grid-template-columns: 46% 54%; }
	.prestige-contact-card--details { grid-template-columns: 47% 53%; }
	.prestige-airport-quote__fields { grid-template-columns: 1.6fr 1.6fr 1.2fr 1.2fr .75fr 1fr; gap: 6px; }
	.prestige-corporate-intro__grid { grid-template-columns: 34% 1fr; }
	.prestige-fleet-track { gap: 7px; }
	.prestige-vehicle-card > div { padding-inline: 9px; }
}

@media (max-width: 782px) {
	.prestige-page-heading { margin-bottom: 18px; }
	.prestige-page-heading .prestige-kicker { font-size: 8px; }
	.prestige-page-heading h2 { max-width: 330px; margin: 7px auto 0; font-size: 20px; }

	.prestige-contact-hero { min-height: 235px; background-position: 61% center; }
	.prestige-contact-hero__shade { background: linear-gradient(90deg,rgba(0,20,39,.97),rgba(0,23,43,.74) 70%,rgba(0,18,34,.25)); }
	.prestige-contact-hero__inner { min-height: 235px; }
	.prestige-contact-hero__copy { top: 27px; left: 15px; width: 230px; }
	.prestige-contact-hero__copy h1 { font-size: 25px; }
	.prestige-contact-hero__copy > p:last-child { font-size: 9px; line-height: 1.75; }
	.prestige-contact-main { position: relative; z-index: 2; margin-top: -54px; padding: 0; }
	.prestige-contact-main__grid { display: block; }
	.prestige-contact-card--form { min-height: 0; padding: 18px 15px; border-radius: 9px; }
	.prestige-contact-card header h2 { font-size: 15px; }
	.prestige-contact-card header p { font-size: 8px; }
	.prestige-contact-form__row { grid-template-columns: 1fr 1fr; }
	.prestige-contact-card--form input { height: 33px; }
	.prestige-contact-card--form textarea { min-height: 60px; }
	.prestige-contact-card--form form > button { width: 100%; }
	.prestige-contact-form__privacy { justify-content: center; }
	.prestige-contact-card--details { display: none; }
	.prestige-contact-mobile-details { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 10px; padding: 11px 0; border: 1px solid var(--prestige-line); border-radius: 8px; background: #fff; }
	.prestige-contact-mobile-details article { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 5px; border-right: 1px solid var(--prestige-line); text-align: center; }
	.prestige-contact-mobile-details article:last-child { border-right: 0; }
	.prestige-contact-mobile-details article > span { color: var(--prestige-ink); }
	.prestige-contact-mobile-details .prestige-icon { width: 18px; height: 18px; }
	.prestige-contact-mobile-details strong { font-size: 7px; }
	.prestige-contact-mobile-details a,
	.prestige-contact-mobile-details small { color: #536071; font-size: 5.5px; line-height: 1.4; overflow-wrap: anywhere; }
	.prestige-contact-mobile-assist { min-height: 72px; display: flex; justify-content: flex-start; margin-top: 10px; border-radius: 8px; }

	.prestige-airport-hero { min-height: 276px; margin-bottom: 321px; background-position: 63% center; }
	.prestige-airport-hero__shade { background: linear-gradient(90deg,rgba(0,19,37,.96),rgba(0,22,42,.72) 70%,rgba(0,18,34,.25)); }
	.prestige-airport-hero__inner { min-height: 276px; }
	.prestige-airport-hero__copy { top: 67px; left: 4px; width: calc(100% - 8px); }
	.prestige-airport-hero__copy h1 { max-width: 315px; font-size: 22px; }
	.prestige-airport-hero__copy > p { max-width: 285px; font-size: 8px; }
	.prestige-airport-hero__proof { display: none; }
	.prestige-airport-quote { left: 0; right: 0; bottom: -308px; min-height: 350px; padding: 11px; border-radius: 9px; }
	.prestige-airport-trip-tabs { width: 172px; }
	.prestige-airport-quote__fields { grid-template-columns: 1fr; gap: 8px; }
	.prestige-airport-quote__fields label { gap: 4px; font-size: 7px; }
	.prestige-airport-input { height: 34px; }
	.prestige-airport-quote__fields > button { height: 35px; margin-top: 1px; }
	.prestige-airport-quote__assurances { position: absolute; left: 0; right: 0; bottom: -79px; width: auto; min-height: 69px; grid-template-columns: repeat(3,1fr); gap: 0; margin: 0; padding: 10px 0; border: 1px solid var(--prestige-line); border-radius: 8px; background: #fff; }
	.prestige-airport-quote__assurances > span { flex-direction: column; justify-content: center; gap: 4px; padding: 0 5px; border-right: 1px solid var(--prestige-line); text-align: center; }
	.prestige-airport-quote__assurances > span:last-child { border-right: 0; }
	.prestige-airport-quote__assurances small { text-align: center; font-size: 5.5px; }
	.prestige-airport-quote__assurances strong { font-size: 6px; }
	.prestige-airports { padding-top: 78px; }
	.prestige-airports__track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 3px; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.prestige-airports__track::-webkit-scrollbar { display: none; }
	.prestige-airport-card { flex: 0 0 136px; scroll-snap-align: start; }
	.prestige-airport-card > img { height: 79px; }
	.prestige-airport-card > div { padding: 9px; }
	.prestige-airport-card h3 { font-size: 8px; }
	.prestige-airport-dots { display: flex; }
	.prestige-airports__all { width: 137px; height: 29px; margin-top: 11px; }
	.prestige-airport-trust { display: none; }

	.prestige-corporate-hero { min-height: 235px; background-position: 67% center; }
	.prestige-corporate-hero__shade { background: linear-gradient(90deg,rgba(0,16,31,.97),rgba(0,20,38,.72) 72%,rgba(0,16,30,.28)); }
	.prestige-corporate-hero__inner { min-height: 235px; }
	.prestige-corporate-hero__copy { top: 23px; left: 4px; width: calc(100% - 8px); }
	.prestige-corporate-hero__copy h1 { max-width: 300px; margin-top: 8px; font-size: 22px; }
	.prestige-corporate-hero__copy > p { max-width: 275px; font-size: 8px; }
	.prestige-corporate-proof { position: absolute; left: 0; right: 0; top: 170px; gap: 0; justify-content: space-between; }
	.prestige-corporate-proof article { min-width: 0; width: 25%; flex-direction: column; align-items: center; gap: 5px; padding: 0 4px; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
	.prestige-corporate-proof article:last-child { border-right: 0; }
	.prestige-corporate-proof article > .prestige-icon { width: 20px; height: 20px; }
	.prestige-corporate-proof strong { font-size: 5.5px; line-height: 1.2; }
	.prestige-corporate-proof span { display: none; }
	.prestige-corporate-intro { padding: 25px 0 12px; }
	.prestige-corporate-intro__grid { display: block; }
	.prestige-corporate-intro__copy h2 { font-size: 22px; }
	.prestige-corporate-intro__copy > p { font-size: 8px; }
	.prestige-corporate-intro__copy li { font-size: 7px; }
	.prestige-corporate-intro__copy > a { min-height: 35px; margin-top: 3px; }
	.prestige-corporate-benefits-photo { display: none; }
	.prestige-corporate-services { padding-top: 16px; border-top: 1px solid #eef1f4; }
	.prestige-corporate-services__grid { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
	.prestige-corporate-services__grid::-webkit-scrollbar { display: none; }
	.prestige-corporate-services__grid article { flex: 0 0 87px; min-height: 89px; padding: 10px 7px; text-align: center; }
	.prestige-corporate-services__grid article > span { width: 28px; margin: auto; }
	.prestige-corporate-services__grid article > span::after { display: none; }
	.prestige-corporate-services__grid .prestige-icon { width: 21px; height: 21px; }
	.prestige-corporate-services__grid h3 { margin-top: 6px; font-size: 6px; line-height: 1.25; }
	.prestige-corporate-services__grid p { display: none; }
	.prestige-corporate-logos .prestige-shell > div { display: flex; gap: 26px; overflow: hidden; }
	.prestige-corporate-logos span { flex: 0 0 auto; font-size: 11px; }
	.prestige-corporate-cta { padding: 11px 0; }
	.prestige-corporate-cta .prestige-shell { min-height: 105px; grid-template-columns: 40px 1fr; gap: 9px; padding: 14px; }
	.prestige-corporate-cta__icon { width: 38px; height: 38px; }
	.prestige-corporate-cta h2 { font-size: 14px; line-height: 1.4; }
	.prestige-corporate-cta p { display: none; }
	.prestige-corporate-cta a { grid-column: 1 / -1; min-height: 36px; justify-content: center; }

	.prestige-fleet-hero { min-height: 320px; background-position: 66% center; }
	.prestige-fleet-hero__shade { background: linear-gradient(90deg,rgba(0,17,33,.97),rgba(0,23,43,.7) 73%,rgba(0,17,32,.26)); }
	.prestige-fleet-hero__inner { min-height: 320px; }
	.prestige-fleet-hero__copy { top: 24px; left: 4px; width: calc(100% - 8px); }
	.prestige-fleet-hero__copy h1 { max-width: 315px; margin-top: 8px; font-size: 25px; }
	.prestige-fleet-hero__copy > p { max-width: 285px; font-size: 8px; }
	.prestige-fleet-hero__proof { position: absolute; left: 0; right: 0; top: 235px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 10px; margin: 0; }
	.prestige-fleet-hero__proof article { min-width: 0; gap: 7px; }
	.prestige-fleet-hero__proof article > .prestige-icon { width: 22px; height: 22px; }
	.prestige-fleet-hero__proof strong { font-size: 6px; }
	.prestige-fleet-hero__proof span { font-size: 5px; }
	.prestige-fleet-showcase { padding-top: 18px; }
	.prestige-fleet-track { display: flex; gap: 11px; overflow-x: auto; padding-bottom: 3px; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.prestige-fleet-track::-webkit-scrollbar { display: none; }
	.prestige-vehicle-card { flex: 0 0 215px; scroll-snap-align: start; }
	.prestige-vehicle-card > img { height: 130px; }
	.prestige-vehicle-card > div { padding: 11px 13px 13px; }
	.prestige-vehicle-card h3 { font-size: 11px; }
	.prestige-vehicle-card__capacity span { font-size: 6.5px; }
	.prestige-vehicle-card > div > p:not(.prestige-vehicle-card__capacity) { min-height: 0; font-size: 7px; }
	.prestige-fleet-dots { display: flex; }
	.prestige-fleet-help { width: 205px; margin-top: 9px; }
	.prestige-fleet-trust { padding-top: 3px; }
	.prestige-fleet-trust .prestige-shell { display: grid; grid-template-columns: 1fr; padding: 8px 13px; }
	.prestige-fleet-trust article { min-height: 58px; gap: 12px; padding: 8px 0; border-right: 0; border-bottom: 1px solid var(--prestige-line); }
	.prestige-fleet-trust article:last-child { border-bottom: 0; }
	.prestige-fleet-trust article > span { width: 37px; height: 37px; flex-basis: 37px; }
	.prestige-fleet-trust article > span .prestige-icon { width: 19px; height: 19px; }
	.prestige-fleet-trust strong { font-size: 8px; }
	.prestige-fleet-trust p { font-size: 6px; }
	.prestige-fleet-cta { padding: 8px 0 13px; }
	.prestige-fleet-cta .prestige-shell { min-height: 185px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px; }
	.prestige-fleet-cta .prestige-shell > span { width: 40px; height: 40px; }
	.prestige-fleet-cta h2 { font-size: 17px; }
	.prestige-fleet-cta p { font-size: 8px; line-height: 1.6; }
	.prestige-fleet-cta a { width: 100%; min-height: 39px; margin-top: auto; }
}

@media (max-width: 390px) {
	.prestige-contact-form__row { grid-template-columns: 1fr; }
	.prestige-contact-mobile-details a,
	.prestige-contact-mobile-details small { font-size: 5px; }
	.prestige-airport-hero__copy { top: 57px; }
}

/* Production typography correction
 * Body copy is 12px; compact supporting copy never drops below 11.5px.
 * This block intentionally follows responsive rules so mobile text remains readable.
 */
body { font-size: 12px; }

/* Global supporting copy and controls */
.prestige-quote-submit small,
.prestige-form-privacy,
.prestige-customer small,
.prestige-footer__brand p,
.prestige-footer__column li,
.prestige-footer__bottom p,
.prestige-footer__assurances span,
.prestige-mobile-menu__book small,
.prestige-mobile-menu__contact > a,
.prestige-faq-heading .prestige-kicker,
.prestige-faq-heading > p:last-child,
.prestige-faq-answer p,
.prestige-auth-divider,
.prestige-auth-view label small,
.prestige-auth-back,
.prestige-auth-message,
.prestige-auth-privacy,
.prestige-profile-card dt,
.prestige-account-quote-list__route p,
.prestige-account-quote-list__meta,
.prestige-account-status,
.prestige-contact-form__privacy,
.prestige-contact-form__message,
.prestige-contact-details small,
.prestige-contact-assist span,
.prestige-contact-mobile-details a,
.prestige-contact-mobile-details small,
.prestige-about-stats p,
.prestige-airport-hero__proof span,
.prestige-airport-quote__assurances small,
.prestige-airport-card p,
.prestige-airport-trust p,
.prestige-corporate-proof span,
.prestige-corporate-benefits-photo aside li,
.prestige-corporate-services__grid p,
.prestige-corporate-logos p,
.prestige-corporate-logos small,
.prestige-vehicle-card__capacity span,
.prestige-fleet-trust p,
.prestige-fleet-hero__proof span {
	font-size: 11.5px;
}

/* Standard 12px body copy */
.prestige-benefit-card p,
.prestige-service-card p,
.prestige-stats p,
.prestige-testimonial-card > p,
.prestige-destination-card p,
.prestige-trust-row p,
.prestige-cta p,
.prestige-about-hero__copy > p:last-child,
.prestige-about-mission__copy > p:not(.prestige-kicker),
.prestige-about-values p,
.prestige-auth-visual p,
.prestige-auth-intro,
.prestige-auth-view label,
.prestige-account-dashboard__header p:last-child,
.prestige-account-empty p,
.prestige-contact-hero__copy > p:last-child,
.prestige-contact-card header p,
.prestige-contact-card--form input,
.prestige-contact-card--form textarea,
.prestige-contact-details b,
.prestige-airport-hero__copy > p,
.prestige-airport-input input,
.prestige-airport-input select,
.prestige-corporate-hero__copy > p,
.prestige-corporate-intro__copy > p,
.prestige-corporate-intro__copy li,
.prestige-corporate-benefits-photo aside li,
.prestige-corporate-cta p,
.prestige-fleet-hero__copy > p,
.prestige-vehicle-card > div > p:not(.prestige-vehicle-card__capacity),
.prestige-fleet-cta p {
	font-size: 12px;
}

/* Kicker labels */
.prestige-kicker,
.prestige-page-heading .prestige-kicker,
.prestige-about-hero__copy .prestige-kicker,
.prestige-about-mission__copy .prestige-kicker,
.prestige-auth-view .prestige-kicker,
.prestige-account-dashboard__header .prestige-kicker,
.prestige-account-quotes__heading .prestige-kicker,
.prestige-contact-hero__copy .prestige-kicker,
.prestige-airport-hero__copy .prestige-kicker,
.prestige-corporate-hero__copy .prestige-kicker,
.prestige-corporate-intro__copy .prestige-kicker,
.prestige-fleet-hero__copy .prestige-kicker {
	font-size: 11.5px;
}

/* Labels, names and primary actions */
.prestige-field > span:first-child:not(.prestige-field__icon),
.prestige-field--compact strong,
.prestige-field--compact input,
.prestige-field--compact select,
.prestige-hero__eyebrow,
.prestige-hero__proof strong,
.prestige-service-tabs button,
.prestige-service-card h3,
.prestige-service-card a,
.prestige-destination-card a,
.prestige-view-services,
.prestige-stats b,
.prestige-customer > span,
.prestige-customer strong,
.prestige-testimonial-top span,
.prestige-destination-card h3,
.prestige-trust-row strong,
.prestige-cta a,
.prestige-footer__toggle,
.prestige-fleet-card strong,
.prestige-fleet-card a,
.prestige-about-benefits strong,
.prestige-about-benefits span,
.prestige-about-stats b,
.prestige-about-mission__copy > a,
.prestige-about-values strong,
.prestige-auth-visual__badge,
.prestige-auth-visual__proof strong,
.prestige-auth-tabs button,
.prestige-auth-input input,
.prestige-account-logout,
.prestige-profile-card dd,
.prestige-account-empty > a,
.prestige-account-quotes__heading > a,
.prestige-account-quote-list__route h3,
.prestige-faq-item > button,
.prestige-contact-card--form form > button,
.prestige-contact-details strong,
.prestige-contact-assist strong,
.prestige-contact-assist a,
.prestige-contact-mobile-details strong,
.prestige-airport-hero__proof strong,
.prestige-airport-trip-tabs button,
.prestige-airport-quote__fields label,
.prestige-airport-quote__fields > button,
.prestige-airport-quote__assurances strong,
.prestige-airport-card h3,
.prestige-airport-card strong,
.prestige-airport-card a,
.prestige-airports__all,
.prestige-airport-trust strong,
.prestige-corporate-proof strong,
.prestige-corporate-intro__copy > a,
.prestige-corporate-benefits-photo aside h3,
.prestige-corporate-services__grid h3,
.prestige-corporate-cta a,
.prestige-fleet-hero__proof strong,
.prestige-vehicle-card h3,
.prestige-vehicle-card a,
.prestige-fleet-help,
.prestige-fleet-trust strong,
.prestige-fleet-cta a {
	font-size: 12px;
}

.prestige-service-card h3,
.prestige-corporate-benefits-photo aside h3 { font-size: 14px; }
.prestige-faq-item > button { font-size: 13px; }
.prestige-corporate-logos span { font-size: 14px; }
.pac-item { font-size: 11.5px; }

/* Allow the corrected type to grow without clipping desktop layouts. */
.prestige-service-card > div { min-height: 158px; }
.prestige-destination-card > div { min-height: 150px; }
.prestige-destination-card h3 { min-height: 40px; }
.prestige-trust-row article { min-height: 76px; }
.prestige-footer__main { min-height: 238px; }
.prestige-about-values > div { min-height: 88px; }
.prestige-contact-card--details { min-height: 370px; }
.prestige-contact-card--form form > button { width: 200px; min-height: 40px; height: auto; }
.prestige-airport-hero { margin-bottom: 116px; }
.prestige-airport-quote { bottom: -155px; min-height: 164px; }
.prestige-airport-input { height: 38px; }
.prestige-airport-input input,
.prestige-airport-input select { height: 35px; }
.prestige-airport-quote__fields > button { height: 39px; }
.prestige-airport-card h3 { min-height: 36px; }
.prestige-airport-card a { min-height: 34px; height: auto; }
.prestige-airports__all { min-height: 34px; height: auto; }
.prestige-corporate-benefits-photo { min-height: 235px; }
.prestige-corporate-benefits-photo > img { height: 235px; }
.prestige-corporate-benefits-photo aside { top: 18px; min-height: 199px; }
.prestige-corporate-services__grid article { min-height: 154px; }
.prestige-corporate-cta .prestige-shell { min-height: 84px; }
.prestige-vehicle-card__capacity { min-height: 22px !important; white-space: normal; }
.prestige-vehicle-card > div > p:not(.prestige-vehicle-card__capacity) { min-height: 58px; }
.prestige-vehicle-card a,
.prestige-fleet-help { min-height: 36px; height: auto; }
.prestige-fleet-trust article { min-height: 76px; }
.prestige-fleet-cta .prestige-shell { min-height: 102px; }

@media (max-width: 782px) {
	.prestige-service-card > div { min-height: 0; }
	.prestige-service-card { min-height: 96px; overflow: hidden; }
	.prestige-service-card > img { height: 100%; min-height: 96px; align-self: stretch; object-fit: cover; }
	.prestige-service-card h3 { font-size: 13px; }
	.prestige-service-card p { font-size: 11.5px; }
	.prestige-service-card a { width: 24px; right: 8px; font-size: 0; }
	.prestige-service-card a .prestige-icon { width: 16px; height: 16px; }
	.prestige-destination-card > div { min-height: 145px; }
	.prestige-trust-row article { min-height: 90px; }
	.prestige-footer__main { min-height: 0; }
	.prestige-contact-mobile-details { grid-template-columns: repeat(2, 1fr); padding: 0; }
	.prestige-contact-mobile-details article { min-height: 82px; justify-content: center; padding: 10px; border-bottom: 1px solid var(--prestige-line); }
	.prestige-contact-mobile-details article:nth-child(2) { border-right: 0; }
	.prestige-contact-mobile-details article:nth-child(n+3) { border-bottom: 0; }
	.prestige-airport-hero { margin-bottom: 358px; }
	.prestige-airport-quote { bottom: -400px; min-height: 384px; }
	.prestige-airport-quote__assurances { bottom: -101px; min-height: 91px; }
	.prestige-airports { padding-top: 100px; }
	.prestige-airport-card { flex-basis: 168px; }
	.prestige-airport-card h3 { min-height: 36px; }
	.prestige-corporate-hero,
	.prestige-corporate-hero__inner { min-height: 310px; }
	.prestige-corporate-proof { top: 185px; }
	.prestige-corporate-services__grid article { flex-basis: 116px; min-height: 112px; }
	.prestige-fleet-hero,
	.prestige-fleet-hero__inner { min-height: 380px; }
	.prestige-fleet-hero__proof { top: 250px; }
	.prestige-vehicle-card { flex-basis: 235px; }
	.prestige-vehicle-card > div > p:not(.prestige-vehicle-card__capacity) { min-height: 0; }
	.prestige-fleet-trust article { min-height: 76px; }
}

/* Production section rhythm and responsive overflow safeguards.
 * These rules reserve space for floating panels and keep adjacent sections
 * visually distinct after the production typography correction above.
 */
@media (min-width: 783px) {
	.prestige-airport-hero { margin-bottom: 140px; }
	.prestige-airports { padding-bottom: 38px;padding-top: 70px; }
	.prestige-airport-trust { padding-top: 30px; padding-bottom: 30px; }

	.prestige-fleet-showcase { padding-top: 32px; padding-bottom: 28px; }
	.prestige-fleet-showcase .prestige-page-heading { margin-bottom: 25px; }
	.prestige-fleet-help { margin-top: 24px; }
	.prestige-fleet-trust { padding-top: 16px; padding-bottom: 18px; }
	.prestige-fleet-cta { padding-top: 12px; padding-bottom: 28px; }
}

@media (max-width: 782px) {
	/* The Airport quote assurances sit outside the floating form. */
	.prestige-airport-quote__assurances {
		bottom: -118px;
		min-height: 108px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.prestige-airport-quote__assurances > span { min-width: 0; }
	.prestige-airport-quote__assurances small {
		line-height: 1.45;
		overflow-wrap: anywhere;
	}
	.prestige-airport-quote__assurances strong { line-height: 1.35; }
	.prestige-airports { padding-top: 200px; padding-bottom: 36px; }
	.prestige-airport-card p {
		min-height: 34px;
		white-space: normal;
	}

	/* Keep the Fleet showcase, trust strip and CTA as distinct sections. */
	.prestige-fleet-showcase { padding-top: 28px; padding-bottom: 26px; }
	.prestige-fleet-showcase .prestige-page-heading { margin-bottom: 24px; }
	.prestige-fleet-help { margin-top: 20px; }
	.prestige-fleet-trust { padding-top: 0; padding-bottom: 24px; }
	.prestige-fleet-cta { padding-top: 0; padding-bottom: 28px; }

	/* Reserve enough flow space for readable copy in other floating/card areas. */
	.prestige-about-hero { margin-bottom: 108px; }
	.prestige-about-benefits {
		bottom: -82px;
		min-height: 160px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.prestige-about-stats > .prestige-shell { min-height: 220px; }
	.prestige-about-stats article { min-height: 100px; }
	.prestige-about-mission { padding-top: 40px; padding-bottom: 34px; }
	.prestige-destination-card > div { min-height: 100px; }
}

/* Standard WordPress search — no WooCommerce dependency. */
.prestige-search-page { background: #f7f9fb; }
.prestige-search-hero {
	padding: 46px 0 48px;
	color: #fff;
	background: radial-gradient(circle at 80% 0, #0a3b65, transparent 39%), linear-gradient(110deg, #00172d, #002b4c);
}
.prestige-search-hero .prestige-kicker { color: var(--prestige-gold-light); }
.prestige-search-hero h1 {
	max-width: 760px;
	margin: 9px 0 10px;
	color: #fff;
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: -.035em;
}
.prestige-search-hero > .prestige-shell > p:last-child {
	max-width: 650px;
	margin: 0;
	color: rgba(255,255,255,.82);
	font-size: 12px;
	line-height: 1.7;
}
.prestige-search-results { padding: 42px 0 58px; }
.prestige-search-form {
	width: min(760px, 100%);
	display: grid;
	grid-template-columns: minmax(0,1fr) 132px;
	gap: 10px;
	margin: 0 auto 30px;
}
.prestige-search-form > span {
	height: 48px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 14px;
	border: 1px solid #cfd6de;
	border-radius: 9px;
	background: #fff;
}
.prestige-search-form > span:focus-within {
	border-color: var(--prestige-gold);
	box-shadow: 0 0 0 3px rgba(233,163,12,.11);
}
.prestige-search-form > span .prestige-icon { width: 19px; height: 19px; color: #667283; }
.prestige-search-form input {
	min-width: 0;
	width: 100%;
	height: 44px;
	padding: 0;
	border: 0;
	outline: 0;
	color: var(--prestige-ink);
	background: transparent;
	font-size: 12px;
}
.prestige-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 17px;
	border: 0;
	border-radius: 9px;
	color: #fff;
	background: var(--prestige-navy);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.prestige-search-form button:hover { background: #06325b; }
.prestige-search-form button .prestige-icon { width: 16px; height: 16px; }
.prestige-search-count { margin: 0 0 17px; color: var(--prestige-muted); font-size: 11.5px; }
.prestige-search-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.prestige-search-card {
	min-width: 0;
	min-height: 202px;
	display: grid;
	grid-template-columns: 180px minmax(0,1fr);
	overflow: hidden;
	border: 1px solid var(--prestige-line);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,24,48,.05);
}
.prestige-search-card__media { min-height: 100%; background: linear-gradient(145deg,#eef3f7,#e3eaf0); }
.prestige-search-card__media > img { width: 100%; height: 100%; object-fit: cover; }
.prestige-search-card__media > span { height: 100%; display: grid; place-items: center; color: var(--prestige-navy); }
.prestige-search-card__media > span .prestige-icon { width: 38px; height: 38px; }
.prestige-search-card__content { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 20px; }
.prestige-search-card__content .prestige-kicker { font-size: 11.5px; }
.prestige-search-card h2 { margin: 7px 0 8px; font-size: 17px; line-height: 1.35; }
.prestige-search-card h2 a { color: var(--prestige-ink); }
.prestige-search-card__content > p:not(.prestige-kicker) { margin: 0 0 15px; color: var(--prestige-muted); font-size: 12px; line-height: 1.65; }
.prestige-search-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: #a96e00;
	font-size: 12px;
	font-weight: 700;
}
.prestige-search-card__link .prestige-icon { width: 14px; height: 14px; }
.prestige-search-pagination { margin-top: 28px; }
.prestige-search-pagination ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 0; padding: 0; list-style: none; }
.prestige-search-pagination a,
.prestige-search-pagination span {
	min-width: 38px;
	min-height: 38px;
	display: grid;
	place-items: center;
	padding: 6px 10px;
	border: 1px solid var(--prestige-line);
	border-radius: 7px;
	color: var(--prestige-ink);
	background: #fff;
	font-size: 12px;
}
.prestige-search-pagination .current { color: #fff; border-color: var(--prestige-navy); background: var(--prestige-navy); }
.prestige-search-empty {
	width: min(650px,100%);
	margin: 0 auto;
	padding: 42px 28px;
	border: 1px solid var(--prestige-line);
	border-radius: 13px;
	background: #fff;
	text-align: center;
}
.prestige-search-empty > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; color: var(--prestige-navy); background: #fff2d5; }
.prestige-search-empty > span .prestige-icon { width: 25px; height: 25px; }
.prestige-search-empty h2 { margin: 0 0 8px; font-size: 22px; }
.prestige-search-empty p { max-width: 480px; margin: 0 auto 18px; color: var(--prestige-muted); font-size: 12px; line-height: 1.65; }
.prestige-search-empty > a { min-height: 40px; display: inline-flex; align-items: center; gap: 12px; padding: 0 17px; border-radius: 7px; color: #fff; background: var(--prestige-navy); font-size: 12px; font-weight: 700; }
.prestige-search-empty > a .prestige-icon { width: 15px; height: 15px; }

@media (max-width: 782px) {
	.prestige-search-hero { padding: 34px 0 37px; }
	.prestige-search-hero h1 { font-size: 25px; }
	.prestige-search-results { padding: 30px 0 42px; }
	.prestige-search-form { grid-template-columns: 1fr; margin-bottom: 24px; }
	.prestige-search-form button { min-height: 44px; }
	.prestige-search-grid { grid-template-columns: 1fr; }
	.prestige-search-card { min-height: 0; grid-template-columns: 112px minmax(0,1fr); }
	.prestige-search-card__content { padding: 15px; }
	.prestige-search-card h2 { font-size: 15px; }
	.prestige-search-card__content > p:not(.prestige-kicker) { display: none; }
	.prestige-search-empty { padding: 34px 20px; }
}
