/* ==========================================================================
   AEROLYN BOOKING FORM
   Design tokens lifted from the existing hero so the form is visually native:
   gold #C7A66B · ink #0B0C0E · cream #F3F1EC · muted #9A968F · radius 6px
   Everything is namespaced under .aerolyn-bf so nothing else on the site
   can be affected.
   ========================================================================== */

.aerolyn-bf {
	--abf-gold: #c7a66b;
	--abf-gold-soft: rgba(199, 166, 107, 0.42);
	--abf-ink: #0b0c0e;
	--abf-cream: #f3f1ec;
	--abf-muted: #9a968f;
	--abf-line: rgba(243, 241, 236, 0.16);
	--abf-line-strong: rgba(243, 241, 236, 0.3);
	--abf-panel: rgba(16, 18, 21, 0.62);
	--abf-input: rgba(255, 255, 255, 0.05);
	--abf-input-focus: rgba(255, 255, 255, 0.09);
	--abf-radius: 6px;
	--abf-danger: #e08b7a;
	--abf-success: #7ec9a4;

	position: relative;
	z-index: 6;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--abf-cream);
	-webkit-font-smoothing: antialiased;
	text-align: left;
}

/* Light-background contexts (inner pages, footers). Add class aerolyn-bf--light */
.aerolyn-bf--light {
	--abf-cream: #1a1408;
	--abf-muted: #6b675f;
	--abf-line: rgba(11, 12, 14, 0.14);
	--abf-line-strong: rgba(11, 12, 14, 0.26);
	--abf-panel: rgba(255, 255, 255, 0.82);
	--abf-input: rgba(11, 12, 14, 0.035);
	--abf-input-focus: rgba(11, 12, 14, 0.06);
	--abf-danger: #b4442c;
}

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

/* ---------- Panel ---------- */

.aerolyn-bf__form {
	background: var(--abf-panel);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
	backdrop-filter: blur(14px) saturate(120%);
	border: 1px solid var(--abf-line);
	border-radius: calc(var(--abf-radius) + 4px);
	padding: 20px 22px 18px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
	margin: 0;
}

.aerolyn-bf__head {
	margin: 0 0 14px;
}

.aerolyn-bf__title {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.16px;
	text-transform: uppercase;
	color: var(--abf-gold);
}

.aerolyn-bf__subtitle {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--abf-muted);
}

/* ---------- Grid ---------- */

.aerolyn-bf__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px 14px;
	align-items: start;
}

.aerolyn-bf__field {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.aerolyn-bf__field--full {
	grid-column: 1 / -1;
}

.aerolyn-bf__field > label {
	display: block;
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: var(--abf-muted);
	line-height: 1.2;
}

.aerolyn-bf__label-spacer {
	display: block;
	height: 17px;
	margin-bottom: 6px;
}

/* ---------- Controls ---------- */

.aerolyn-bf__control {
	position: relative;
	display: flex;
	align-items: center;
}

.aerolyn-bf__icon {
	position: absolute;
	left: 12px;
	display: flex;
	pointer-events: none;
	color: var(--abf-gold);
	opacity: 0.85;
}

.aerolyn-bf input[type="text"],
.aerolyn-bf input[type="email"],
.aerolyn-bf input[type="tel"],
.aerolyn-bf textarea {
	width: 100%;
	margin: 0;
	padding: 13px 14px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--abf-cream);
	background: var(--abf-input);
	border: 1px solid var(--abf-line);
	border-radius: var(--abf-radius);
	outline: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.aerolyn-bf__control .aerolyn-bf__icon ~ input {
	padding-left: 36px;
}

.aerolyn-bf input::placeholder,
.aerolyn-bf textarea::placeholder {
	color: var(--abf-muted);
	opacity: 0.75;
}

.aerolyn-bf input:hover,
.aerolyn-bf textarea:hover {
	border-color: var(--abf-line-strong);
}

.aerolyn-bf input:focus,
.aerolyn-bf textarea:focus {
	background: var(--abf-input-focus);
	border-color: var(--abf-gold);
	box-shadow: 0 0 0 3px rgba(199, 166, 107, 0.16);
}

.aerolyn-bf input[readonly] {
	cursor: pointer;
}

.aerolyn-bf textarea {
	resize: vertical;
	min-height: 84px;
}

/* Error state */

.aerolyn-bf__field.is-invalid input,
.aerolyn-bf__field.is-invalid textarea {
	border-color: var(--abf-danger);
}

.aerolyn-bf__error {
	display: none;
	margin-top: 5px;
	font-size: 12px;
	line-height: 1.35;
	color: var(--abf-danger);
}

.aerolyn-bf__field.is-invalid .aerolyn-bf__error {
	display: block;
}

/* ---------- Suggestions dropdown ---------- */

.aerolyn-bf__suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 40;
	max-height: 268px;
	overflow-y: auto;
	overscroll-behavior: contain;
	margin: 0;
	padding: 5px;
	list-style: none;
	background: #14161a;
	border: 1px solid var(--abf-line-strong);
	border-radius: var(--abf-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	-webkit-overflow-scrolling: touch;
}

.aerolyn-bf--light .aerolyn-bf__suggestions {
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(11, 12, 14, 0.16);
}

.aerolyn-bf__suggestions[hidden] {
	display: none;
}

.aerolyn-bf__suggestions li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	color: var(--abf-cream);
	border-radius: 4px;
	cursor: pointer;
}

.aerolyn-bf--light .aerolyn-bf__suggestions li {
	color: #1a1408;
}

.aerolyn-bf__suggestions li[aria-selected="true"],
.aerolyn-bf__suggestions li:hover {
	background: rgba(199, 166, 107, 0.16);
}

.aerolyn-bf__suggestions li.is-empty {
	color: var(--abf-muted);
	cursor: default;
	font-size: 13px;
}

.aerolyn-bf__suggestions li.is-empty:hover {
	background: none;
}

.aerolyn-bf__sug-icon {
	flex: 0 0 auto;
	display: flex;
	color: var(--abf-gold);
	opacity: 0.9;
}

.aerolyn-bf__sug-body {
	min-width: 0;
}

.aerolyn-bf__sug-main {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.aerolyn-bf__sug-sub {
	display: block;
	margin-top: 1px;
	font-size: 12px;
	color: var(--abf-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.aerolyn-bf__suggestions--time {
	max-height: 232px;
}

.aerolyn-bf__suggestions--time li {
	justify-content: flex-start;
	font-variant-numeric: tabular-nums;
}

/* ---------- Date picker ---------- */

.aerolyn-bf__cal {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 60;
	width: 292px;
	padding: 12px;
	background: #14161a;
	border: 1px solid var(--abf-line-strong);
	border-radius: var(--abf-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	user-select: none;
}

.aerolyn-bf--light .aerolyn-bf__cal {
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(11, 12, 14, 0.16);
}

.aerolyn-bf__cal[hidden] {
	display: none;
}

.aerolyn-bf__cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.aerolyn-bf__cal-title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--abf-cream);
}

.aerolyn-bf--light .aerolyn-bf__cal-title {
	color: #1a1408;
}

.aerolyn-bf__cal-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--abf-line);
	border-radius: 4px;
	color: var(--abf-cream);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.aerolyn-bf--light .aerolyn-bf__cal-nav {
	color: #1a1408;
}

.aerolyn-bf__cal-nav:hover:not(:disabled) {
	border-color: var(--abf-gold);
	background: rgba(199, 166, 107, 0.12);
}

.aerolyn-bf__cal-nav:disabled {
	opacity: 0.28;
	cursor: not-allowed;
}

.aerolyn-bf__cal-dow,
.aerolyn-bf__cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}

.aerolyn-bf__cal-dow span {
	padding: 4px 0;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--abf-muted);
}

.aerolyn-bf__cal-day {
	padding: 0;
	height: 34px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: inherit;
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	color: var(--abf-cream);
	cursor: pointer;
	transition: background-color 0.13s ease, color 0.13s ease;
}

.aerolyn-bf--light .aerolyn-bf__cal-day {
	color: #1a1408;
}

.aerolyn-bf__cal-day:hover:not(:disabled) {
	background: rgba(199, 166, 107, 0.18);
}

.aerolyn-bf__cal-day:disabled {
	color: var(--abf-muted);
	opacity: 0.32;
	cursor: not-allowed;
}

.aerolyn-bf__cal-day.is-today:not(.is-selected) {
	border-color: var(--abf-gold-soft);
}

.aerolyn-bf__cal-day.is-selected {
	background: var(--abf-gold);
	color: var(--abf-ink);
	font-weight: 600;
}

.aerolyn-bf__cal-day.is-blank {
	visibility: hidden;
}

.aerolyn-bf__cal-foot {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--abf-line);
}

.aerolyn-bf__cal-quick {
	flex: 1;
	padding: 7px 6px;
	background: transparent;
	border: 1px solid var(--abf-line);
	border-radius: 4px;
	font-family: inherit;
	font-size: 12px;
	color: var(--abf-cream);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.aerolyn-bf--light .aerolyn-bf__cal-quick {
	color: #1a1408;
}

.aerolyn-bf__cal-quick:hover {
	border-color: var(--abf-gold);
	background: rgba(199, 166, 107, 0.12);
}

/* ---------- Submit ---------- */

.aerolyn-bf__field--submit {
	justify-content: flex-start;
}

.aerolyn-bf__submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	padding: 14px 22px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--abf-ink);
	background: var(--abf-gold);
	border: 1px solid var(--abf-gold);
	border-radius: var(--abf-radius);
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.12s ease, opacity 0.18s ease;
	white-space: nowrap;
}

.aerolyn-bf__submit:hover:not(:disabled) {
	background: #d6b57c;
	border-color: #d6b57c;
}

.aerolyn-bf__submit:active:not(:disabled) {
	transform: translateY(1px);
}

.aerolyn-bf__submit:disabled {
	opacity: 0.62;
	cursor: not-allowed;
}

.aerolyn-bf__spinner {
	display: none;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(11, 12, 14, 0.28);
	border-top-color: var(--abf-ink);
	border-radius: 50%;
	animation: aerolyn-bf-spin 0.65s linear infinite;
}

.aerolyn-bf.is-sending .aerolyn-bf__spinner {
	display: block;
}

@keyframes aerolyn-bf-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.aerolyn-bf__spinner {
		animation-duration: 2s;
	}

	.aerolyn-bf * {
		transition-duration: 0.01ms !important;
	}
}

/* ---------- "More" disclosure ---------- */

.aerolyn-bf__more {
	margin-top: -2px;
}

.aerolyn-bf__more-toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 4px 0;
	background: none;
	border: 0;
	font-family: inherit;
	font-size: 12.5px;
	letter-spacing: 0.2px;
	color: var(--abf-muted);
	cursor: pointer;
	text-align: left;
	transition: color 0.15s ease;
}

.aerolyn-bf__more-toggle:hover {
	color: var(--abf-gold);
}

.aerolyn-bf__more-toggle svg {
	flex: 0 0 auto;
	transition: transform 0.2s ease;
}

.aerolyn-bf__more-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.aerolyn-bf__more-panel {
	margin-top: 9px;
}

.aerolyn-bf__more-panel[hidden] {
	display: none;
}

/* ---------- Status + legal ---------- */

.aerolyn-bf__status {
	display: none;
	margin-top: 14px;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: var(--abf-radius);
	border: 1px solid transparent;
}

.aerolyn-bf__status.is-visible {
	display: block;
}

.aerolyn-bf__status.is-success {
	color: var(--abf-success);
	background: rgba(126, 201, 164, 0.1);
	border-color: rgba(126, 201, 164, 0.35);
}

.aerolyn-bf__status.is-error {
	color: var(--abf-danger);
	background: rgba(224, 139, 122, 0.1);
	border-color: rgba(224, 139, 122, 0.35);
}

.aerolyn-bf__legal {
	margin: 12px 0 0;
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--abf-muted);
	opacity: 0.85;
}

/* ---------- Honeypot + a11y helpers ---------- */

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

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

.aerolyn-bf :focus-visible {
	outline: 2px solid var(--abf-gold);
	outline-offset: 2px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
	.aerolyn-bf__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aerolyn-bf__form {
		padding: 18px 18px 16px;
	}

	.aerolyn-bf__cal {
		width: 280px;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.aerolyn-bf__grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.aerolyn-bf__form {
		padding: 16px 14px 14px;
		border-radius: var(--abf-radius);
		/* Blur is expensive on low-end phones; solid panel instead. */
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: rgba(13, 15, 18, 0.92);
	}

	.aerolyn-bf--light .aerolyn-bf__form {
		background: rgba(255, 255, 255, 0.96);
	}

	/* 16px prevents iOS Safari from zooming on focus. */
	.aerolyn-bf input[type="text"],
	.aerolyn-bf input[type="email"],
	.aerolyn-bf input[type="tel"],
	.aerolyn-bf textarea {
		font-size: 16px;
		padding: 12px 13px;
	}

	.aerolyn-bf__control .aerolyn-bf__icon ~ input {
		padding-left: 34px;
	}

	.aerolyn-bf__cal {
		left: 50%;
		width: min(300px, calc(100vw - 40px));
		transform: translateX(-50%);
	}

	.aerolyn-bf__suggestions {
		max-height: 226px;
	}

	.aerolyn-bf__submit {
		padding: 15px 22px;
	}
}

/* Stacked layout: single column everywhere (sidebars, narrow sections) */
.aerolyn-bf--stacked .aerolyn-bf__grid {
	grid-template-columns: 1fr;
}

/* ==========================================================================
   GOLD THEME  —  [aerolyn_booking_form theme="gold"]
   The card from the brief: gold gradient panel, white pill inputs with gold
   icons, dark full-width CTA. Everything below is scoped to .aerolyn-bf--gold
   so the dark theme is untouched.
   ========================================================================== */

.aerolyn-bf--gold {
	--abf-gold: #b8862b;          /* icon / accent on white */
	--abf-ink: #16181c;
	--abf-cream: #241a06;         /* primary text on gold */
	--abf-muted: #5c4a1e;         /* labels + secondary text */
	--abf-line: rgba(60, 42, 0, 0.14);
	--abf-line-strong: rgba(60, 42, 0, 0.26);
	--abf-panel: none;
	--abf-input: #ffffff;
	--abf-input-focus: #ffffff;
	--abf-danger: #9c2f16;
	--abf-success: #1f6b45;
}

.aerolyn-bf--gold .aerolyn-bf__form {
	background: linear-gradient(150deg, #e6bf62 0%, #d8aa47 46%, #cba152 100%);
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 14px;
	padding: 34px 34px 26px;
	box-shadow: 0 24px 60px rgba(28, 18, 0, 0.34);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

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

.aerolyn-bf--gold .aerolyn-bf__head {
	margin: 0 0 26px;
	text-align: center;
}

.aerolyn-bf--gold .aerolyn-bf__crest {
	display: block;
	margin: 0 auto 10px;
	color: #4a3a14;
	opacity: 0.9;
}

.aerolyn-bf--gold .aerolyn-bf__title {
	font-family: Fraunces, Georgia, "Times New Roman", serif;
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #241a06;
	line-height: 1.15;
}

.aerolyn-bf--gold .aerolyn-bf__rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 10px auto 0;
	max-width: 210px;
	font-size: 9px;
	color: rgba(36, 26, 6, 0.55);
}

.aerolyn-bf--gold .aerolyn-bf__rule i {
	flex: 1 1 auto;
	height: 1px;
	background: rgba(36, 26, 6, 0.28);
}

.aerolyn-bf--gold .aerolyn-bf__subtitle {
	margin-top: 9px;
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: #3d2f0f;
}

/* ---- Fields ---- */

.aerolyn-bf--gold .aerolyn-bf__field > label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 1.15px;
	color: #4a3a14;
}

.aerolyn-bf--gold input[type="text"],
.aerolyn-bf--gold input[type="email"],
.aerolyn-bf--gold input[type="tel"],
.aerolyn-bf--gold select,
.aerolyn-bf--gold textarea {
	background: #fff;
	border: 1px solid rgba(60, 42, 0, 0.1);
	border-radius: 9px;
	color: #1a1408;
	padding: 14px 15px;
	box-shadow: 0 1px 3px rgba(50, 34, 0, 0.09);
}

.aerolyn-bf--gold input::placeholder,
.aerolyn-bf--gold textarea::placeholder {
	color: #a2988a;
	opacity: 1;
}

.aerolyn-bf--gold input:hover,
.aerolyn-bf--gold select:hover,
.aerolyn-bf--gold textarea:hover {
	border-color: rgba(60, 42, 0, 0.22);
}

.aerolyn-bf--gold input:focus,
.aerolyn-bf--gold select:focus,
.aerolyn-bf--gold textarea:focus {
	border-color: #a8791f;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75);
}

.aerolyn-bf--gold .aerolyn-bf__icon {
	color: #b8862b;
	opacity: 1;
}

.aerolyn-bf--gold .aerolyn-bf__error {
	color: #7a2510;
	font-weight: 500;
}

.aerolyn-bf--gold .aerolyn-bf__field.is-invalid input,
.aerolyn-bf--gold .aerolyn-bf__field.is-invalid select,
.aerolyn-bf--gold .aerolyn-bf__field.is-invalid textarea {
	border-color: #9c2f16;
	box-shadow: 0 0 0 3px rgba(156, 47, 22, 0.14);
}

/* ---- Submit ---- */

.aerolyn-bf--gold .aerolyn-bf__submit {
	background: #16181c;
	border-color: #16181c;
	color: #e3bd6b;
	border-radius: 9px;
	padding: 17px 24px;
	font-size: 14px;
	letter-spacing: 1.6px;
	box-shadow: 0 6px 16px rgba(22, 24, 28, 0.28);
}

.aerolyn-bf--gold .aerolyn-bf__submit:hover:not(:disabled) {
	background: #22262c;
	border-color: #22262c;
	color: #eecb80;
}

.aerolyn-bf--gold .aerolyn-bf__spinner {
	border-color: rgba(227, 189, 107, 0.3);
	border-top-color: #e3bd6b;
}

/* The CTA spans the full width of the card, under the field grid. */
.aerolyn-bf--gold .aerolyn-bf__field--submit {
	grid-column: 1 / -1;
	margin-top: 4px;
}

.aerolyn-bf--gold .aerolyn-bf__label-spacer {
	display: none;
}

/* ---- Disclosure + notes ---- */

.aerolyn-bf--gold .aerolyn-bf__more-toggle {
	color: #4a3a14;
}

.aerolyn-bf--gold .aerolyn-bf__more-toggle:hover {
	color: #16181c;
}

.aerolyn-bf--gold .aerolyn-bf__legal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 14px;
	font-size: 12px;
	color: #4a3a14;
	opacity: 1;
	text-align: center;
}

.aerolyn-bf--gold .aerolyn-bf__lock {
	display: inline-flex;
	flex: 0 0 auto;
}

.aerolyn-bf--gold .aerolyn-bf__legal--enquiry {
	margin-top: 4px;
	font-size: 11.5px;
	opacity: 0.72;
}

/* ---- Status ---- */

.aerolyn-bf--gold .aerolyn-bf__status.is-success {
	color: #16401f;
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(22, 64, 31, 0.35);
}

.aerolyn-bf--gold .aerolyn-bf__status.is-error {
	color: #7a2510;
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(122, 37, 16, 0.35);
}

/* ---- Popovers read as light on a gold card ---- */

.aerolyn-bf--gold .aerolyn-bf__suggestions,
.aerolyn-bf--gold .aerolyn-bf__cal {
	background: #fff;
	border-color: rgba(60, 42, 0, 0.18);
	box-shadow: 0 18px 44px rgba(28, 18, 0, 0.24);
}

.aerolyn-bf--gold .aerolyn-bf__suggestions li,
.aerolyn-bf--gold .aerolyn-bf__cal-title,
.aerolyn-bf--gold .aerolyn-bf__cal-day,
.aerolyn-bf--gold .aerolyn-bf__cal-nav,
.aerolyn-bf--gold .aerolyn-bf__cal-quick {
	color: #241a06;
}

.aerolyn-bf--gold .aerolyn-bf__suggestions li[aria-selected="true"],
.aerolyn-bf--gold .aerolyn-bf__suggestions li:hover,
.aerolyn-bf--gold .aerolyn-bf__cal-day:hover:not(:disabled) {
	background: rgba(184, 134, 43, 0.14);
}

.aerolyn-bf--gold .aerolyn-bf__cal-day.is-selected {
	background: #b8862b;
	color: #fff;
}

.aerolyn-bf--gold .aerolyn-bf__cal-day.is-today:not(.is-selected) {
	border-color: rgba(184, 134, 43, 0.6);
}

.aerolyn-bf--gold .aerolyn-bf__sug-sub,
.aerolyn-bf--gold .aerolyn-bf__cal-dow span {
	color: #6b5a30;
}

.aerolyn-bf--gold .aerolyn-bf__sug-icon {
	color: #b8862b;
}

/* ==========================================================================
   SELECT  (Fleet / Vehicle)  — shared by both themes
   ========================================================================== */

.aerolyn-bf select {
	width: 100%;
	margin: 0;
	padding: 13px 38px 13px 14px;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.3;
	color: var(--abf-cream);
	background: var(--abf-input);
	border: 1px solid var(--abf-line);
	border-radius: var(--abf-radius);
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.aerolyn-bf__control .aerolyn-bf__icon ~ select {
	padding-left: 36px;
}

.aerolyn-bf select:focus {
	border-color: var(--abf-gold);
	box-shadow: 0 0 0 3px rgba(199, 166, 107, 0.16);
}

/* Dark theme needs the native dropdown list to be readable too. */
.aerolyn-bf select option {
	background: #14161a;
	color: #f3f1ec;
}

.aerolyn-bf--gold select option {
	background: #fff;
	color: #1a1408;
}

.aerolyn-bf__caret {
	position: absolute;
	right: 13px;
	display: flex;
	pointer-events: none;
	color: var(--abf-muted);
}

.aerolyn-bf--gold .aerolyn-bf__caret {
	color: #6b5a30;
}

@media (max-width: 640px) {
	.aerolyn-bf--gold .aerolyn-bf__form {
		padding: 24px 18px 20px;
		border-radius: 12px;
	}

	.aerolyn-bf--gold .aerolyn-bf__head {
		margin-bottom: 20px;
	}

	.aerolyn-bf select {
		font-size: 16px;
	}
}

/* Two-column rhythm, as in the supplied design. */
.aerolyn-bf--gold .aerolyn-bf__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

@media (max-width: 640px) {
	.aerolyn-bf--gold .aerolyn-bf__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* The gold theme sets `padding` as a shorthand, which wipes the icon offset
   applied earlier in this file. Re-apply it after, or the placeholder text
   renders on top of the icon. */
.aerolyn-bf--gold .aerolyn-bf__control .aerolyn-bf__icon ~ input,
.aerolyn-bf--gold .aerolyn-bf__control .aerolyn-bf__icon ~ select {
	padding-left: 42px;
}

.aerolyn-bf--gold .aerolyn-bf__icon {
	left: 14px;
}

/* Optional extras belong above the call to action, not stranded beneath it. */
.aerolyn-bf--gold .aerolyn-bf__more {
	order: 1;
	margin-top: 2px;
}

.aerolyn-bf--gold .aerolyn-bf__field--submit {
	order: 2;
}
