/**
 * Modern hero + footer + header chrome (mobile & desktop).
 */

/* ——— Top bar ——— */

.hfd-topbar {
	border-bottom: 1px solid rgba(225, 29, 46, 0.22);
	background: linear-gradient(180deg, #0c0c0f 0%, #050505 100%);
}

.hfd-topbar__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0.45rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hfd-topbar__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.55rem;
	border-radius: 9999px;
	border: 1px solid rgba(225, 29, 46, 0.45);
	background: rgba(225, 29, 46, 0.1);
	color: var(--hfd-accent-soft, #ff4d5e);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hfd-topbar__msg {
	flex: 1;
	min-width: 0;
	color: #94a3b8;
	font-size: 0.72rem;
	line-height: 1.35;
}

.hfd-topbar__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.85rem;
	border-radius: 9999px;
	background: linear-gradient(120deg, var(--hfd-accent-soft, #ff4d5e), var(--hfd-accent, #e11d2e));
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hfd-topbar__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 24px -6px color-mix(in srgb, var(--hfd-accent, #e11d2e) 50%, transparent);
}

@media (min-width: 768px) {
	.hfd-topbar__inner {
		padding: 0.45rem 1.5rem;
		flex-wrap: nowrap;
	}

	.hfd-topbar__msg {
		text-align: center;
		font-size: 0.75rem;
	}
}

@media (min-width: 1024px) {
	.hfd-topbar__inner {
		padding: 0.45rem 2rem;
	}
}

/* ——— Desktop header nav ——— */
@media (min-width: 768px) {
	header nav.hidden.md\:block,
	header nav.md\:block {
		display: block !important;
	}

	header .hidden.md\:flex {
		display: flex !important;
	}

	#aurora-mobile-menu.md\:hidden {
		display: none !important;
	}

	#aurora-nav-toggle.md\:hidden {
		display: none !important;
	}
}

body.hfd-chrome > header.sticky.aurora-glass,
#hbl-sticky-chrome > header.sticky.aurora-glass {
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

#hbl-sticky-chrome {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
}

#hbl-sticky-chrome > header.sticky.aurora-glass {
	position: relative;
	top: auto;
	z-index: 1;
}

body.hfd-chrome > header.sticky.aurora-glass {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
}

body.hfd-chrome header nav ul.hfd-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.1rem;
}

body.hfd-chrome header nav ul.hfd-nav > li {
	position: relative;
}

body.hfd-chrome header nav ul.hfd-nav > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.7rem;
	border-radius: 9999px;
	color: #cbd5e1;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	transition: color 0.15s ease, background 0.15s ease;
}

body.hfd-chrome header nav ul.hfd-nav > li > a:hover,
body.hfd-chrome header nav ul.hfd-nav > li:focus-within > a,
body.hfd-chrome header nav ul.hfd-nav > li.is-open > a {
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
}

body.hfd-chrome header nav ul.hfd-nav > li.menu-item-has-children > a.hfd-nav-parent::after {
	content: "";
	width: 0.38rem;
	height: 0.38rem;
	margin-top: -0.15rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.65;
}

body.hfd-chrome header nav ul.hfd-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: linear-gradient(165deg, #171a22 0%, #0e1016 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(225, 29, 46, 0.06);
	z-index: 120;
}

body.hfd-chrome header nav ul.hfd-nav .sub-menu a {
	display: block;
	padding: 0.52rem 0.75rem;
	border-radius: 10px;
	color: #cbd5e1;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

body.hfd-chrome header nav ul.hfd-nav .sub-menu a:hover,
body.hfd-chrome header nav ul.hfd-nav .sub-menu a:focus {
	background: rgba(225, 29, 46, 0.14);
	color: var(--hfd-accent-soft, #ff4d5e);
}

body.hfd-chrome header nav ul.hfd-nav li.hfd-has-mega .sub-menu {
	min-width: min(540px, 82vw);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	padding: 10px;
}

body.hfd-chrome header nav ul.hfd-nav > li:hover > .sub-menu,
body.hfd-chrome header nav ul.hfd-nav > li:focus-within > .sub-menu,
body.hfd-chrome header nav ul.hfd-nav > li.is-open > .sub-menu {
	display: block;
	animation: hbl-nav-drop 0.18s ease;
}

body.hfd-chrome header nav ul.hfd-nav li.hfd-has-mega:hover > .sub-menu,
body.hfd-chrome header nav ul.hfd-nav li.hfd-has-mega:focus-within > .sub-menu,
body.hfd-chrome header nav ul.hfd-nav li.hfd-has-mega.is-open > .sub-menu {
	display: grid;
}

@keyframes hbl-nav-drop {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ——— Header → hero spacing ——— */

main#content > .hbl-seo-hero:first-child {
	margin-top: 0;
}

/* ——— Homepage hero ——— */
.hbl-seo-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 3vw, 3.5rem) 0 clamp(2rem, 4vw, 4rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background:
		radial-gradient(ellipse 90% 70% at 50% -30%, rgba(225, 29, 46, 0.2), transparent 65%),
		radial-gradient(ellipse 45% 35% at 100% 10%, rgba(192, 38, 211, 0.14), transparent),
		radial-gradient(ellipse 40% 30% at 0% 20%, rgba(124, 58, 237, 0.1), transparent),
		#050505;
}

.hbl-seo-hero__layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(1.25rem, 3vw, 2rem);
}

.hbl-seo-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}

.hbl-seo-hero__aside {
	display: none;
	width: 100%;
}

.hbl-seo-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hbl-seo-hero__orb {
	position: absolute;
	border-radius: 9999px;
	filter: blur(72px);
	opacity: 0.55;
}

.hbl-seo-hero__orb--a {
	width: min(22rem, 55vw);
	height: min(22rem, 55vw);
	top: -6rem;
	left: -4rem;
	background: rgba(225, 29, 46, 0.35);
}

.hbl-seo-hero__orb--b {
	width: min(18rem, 45vw);
	height: min(18rem, 45vw);
	top: 0;
	right: -3rem;
	background: rgba(124, 58, 237, 0.28);
}

.hbl-seo-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
	text-align: center;
}

.hbl-seo-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(217, 70, 239, 0.35);
	background: rgba(217, 70, 239, 0.08);
	color: #f0abfc;
	font-size: clamp(0.72rem, 2vw, 0.8rem);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hbl-seo-hero__title {
	margin: clamp(1rem, 2.8vw, 1.35rem) 0 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(2rem, 6.5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.08;
	color: #f8fafc;
	max-width: min(100%, 36rem);
	margin-left: auto;
	margin-right: auto;
}

.hbl-seo-hero__sub {
	margin: clamp(0.85rem, 2.4vw, 1.15rem) auto 0;
	max-width: min(100%, 36rem);
	font-size: clamp(1.05rem, 2.8vw, 1.25rem);
	line-height: 1.65;
	color: #cbd5e1;
}

.hbl-seo-hero__panel {
	padding: 1.35rem 1.5rem;
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
}

.hbl-seo-hero__panel-kicker {
	margin: 0 0 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f0abfc;
}

.hbl-seo-hero__panel-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.hbl-seo-hero__panel-list li {
	display: grid;
	gap: 0.15rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hbl-seo-hero__panel-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.hbl-seo-hero__panel-list strong {
	font-size: 1.05rem;
	font-weight: 700;
	color: #f8fafc;
}

.hbl-seo-hero__panel-list span {
	font-size: 0.92rem;
	line-height: 1.45;
	color: #94a3b8;
}

.hbl-seo-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-top: clamp(1.1rem, 3vw, 1.5rem);
}

.hbl-seo-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.35rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hbl-seo-hero__btn--primary {
	color: #fff;
	background: linear-gradient(120deg, var(--hfd-accent-soft, #ff4d5e), var(--hfd-accent, #e11d2e));
	box-shadow: 0 0 40px -8px color-mix(in srgb, var(--hfd-accent, #e11d2e) 50%, transparent);
}

.hbl-seo-hero__btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 48px -6px color-mix(in srgb, var(--hfd-accent, #e11d2e) 55%, transparent);
}

.hbl-seo-hero__btn--ghost {
	color: #f1f5f9;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
}

.hbl-seo-hero__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.2);
}

.hbl-seo-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem 0.65rem;
	margin: clamp(1rem, 2.5vw, 1.35rem) 0 0;
	padding: 0;
	list-style: none;
}

.hbl-seo-hero__meta li {
	padding: 0.3rem 0.65rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #94a3b8;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

@media (min-width: 640px) {
	.hbl-seo-hero__inner {
		padding: 0 1.5rem;
	}

	.hbl-seo-hero__title {
		max-width: min(100%, 42rem);
	}

	.hbl-seo-hero__btn {
		min-width: 10.5rem;
	}
}

@media (min-width: 1024px) {
	.hbl-seo-hero__layout {
		display: grid;
		grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
		align-items: center;
		gap: 3rem;
		max-width: 72rem;
	}

	.hbl-seo-hero__copy {
		align-items: flex-start;
		text-align: left;
	}

	.hbl-seo-hero__aside {
		display: block;
	}

	.hbl-seo-hero__title {
		max-width: 14em;
		margin-left: 0;
		margin-right: 0;
		font-size: clamp(2.75rem, 3.8vw, 3.85rem);
	}

	.hbl-seo-hero__sub {
		margin-left: 0;
		margin-right: 0;
		max-width: 34rem;
		font-size: 1.2rem;
	}

	.hbl-seo-hero__actions,
	.hbl-seo-hero__meta {
		justify-content: flex-start;
	}

	.hbl-seo-hero__btn {
		min-height: 3rem;
		padding: 0.75rem 1.6rem;
		font-size: 0.95rem;
	}

	.hbl-seo-hero__meta li {
		font-size: 0.8rem;
	}
}

/* ——— Site footer (HFD) ——— */
.hfd-footer {
	position: relative;
	overflow: hidden;
	margin-top: clamp(2.5rem, 6vw, 4.5rem);
	padding: clamp(2rem, 5vw, 3.25rem) 0 0;
	background:
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(225, 29, 46, 0.1), transparent 60%),
		linear-gradient(180deg, #0b0b0e 0%, #050505 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hfd-footer__glow {
	opacity: 0.85;
}

.hfd-footer__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem 1.5rem;
}

.hfd-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem 1.25rem;
}

.hfd-footer__brand {
	text-align: center;
}

.hfd-footer__logo {
	display: inline-block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.35rem, 4vw, 1.65rem);
	font-weight: 700;
	background: linear-gradient(120deg, var(--hfd-accent-soft, #ff4d5e), var(--hfd-accent, #e11d2e));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-decoration: none;
}

.hfd-footer__lead {
	margin: 0.65rem auto 1rem;
	max-width: 22rem;
	color: #94a3b8;
	font-size: 0.875rem;
	line-height: 1.65;
}

.hfd-footer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.55rem 1.15rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(120deg, var(--hfd-accent-soft, #ff4d5e), var(--hfd-accent, #e11d2e));
	box-shadow: 0 0 32px -10px color-mix(in srgb, var(--hfd-accent, #e11d2e) 45%, transparent);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hfd-footer__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 40px -8px color-mix(in srgb, var(--hfd-accent, #e11d2e) 50%, transparent);
}

.hfd-footer__col h3 {
	margin: 0 0 0.65rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f0abfc;
}

.hfd-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hfd-footer__col a {
	color: #cbd5e1;
	font-size: 0.8125rem;
	line-height: 1.45;
	text-decoration: none;
	transition: color 0.15s ease;
}

.hfd-footer__col a:hover {
	color: var(--hfd-accent-soft, #ff4d5e);
}

.hfd-footer__bar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.75rem;
	padding: 1.15rem 0 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.hfd-footer__copy {
	margin: 0;
	color: #64748b;
	font-size: 0.75rem;
	line-height: 1.5;
}

.hfd-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1rem;
}

.hfd-footer__legal a {
	color: #94a3b8;
	font-size: 0.75rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

.hfd-footer__legal a:hover {
	color: #f0abfc;
}

@media (min-width: 640px) {
	.hfd-footer__inner {
		padding: 0 1.5rem 1.75rem;
	}

	.hfd-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.5rem;
	}

	.hfd-footer__brand {
		grid-column: 1 / -1;
		text-align: center;
	}

	.hfd-footer__lead {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 768px) {
	.hfd-footer__grid {
		grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
		gap: 2rem 2.25rem;
	}

	.hfd-footer__brand {
		grid-column: auto;
		text-align: left;
	}

	.hfd-footer__lead {
		margin-left: 0;
		margin-right: 0;
	}

	.hfd-footer__bar {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: left;
	}

	.hfd-footer__legal {
		justify-content: flex-end;
	}
}

@media (min-width: 1024px) {
	.hfd-footer__inner {
		padding: 0 2rem 2rem;
	}
}

/* ——— Mobile footer (modern app-style) ——— */
@media (max-width: 767px) {
	.hfd-footer {
		margin-top: 2rem;
		padding-top: 1.5rem;
		border-top: none;
		background:
			linear-gradient(180deg, rgba(225, 29, 46, 0.14) 0, transparent 28%),
			linear-gradient(180deg, #0a0a0d 0%, #050505 100%);
	}

	.hfd-footer::before {
		content: "";
		display: block;
		height: 3px;
		margin: 0 1rem 1.25rem;
		border-radius: 9999px;
		background: linear-gradient(90deg, transparent, var(--hfd-accent, #e11d2e), #a855f7, transparent);
		opacity: 0.85;
	}

	.hfd-footer__inner {
		padding: 0 1rem 1.25rem;
	}

	.hfd-footer__grid {
		gap: 0.85rem;
	}

	.hfd-footer__brand {
		padding: 1.15rem 1rem 1.25rem;
		border-radius: 20px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background:
			radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 29, 46, 0.12), transparent 70%),
			rgba(255, 255, 255, 0.03);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	}

	.hfd-footer__logo {
		font-size: 1.5rem;
	}

	.hfd-footer__lead {
		max-width: none;
		font-size: 0.8125rem;
		line-height: 1.6;
	}

	.hfd-footer__btn {
		display: flex;
		width: 100%;
		min-height: 2.85rem;
		margin-top: 0.35rem;
		font-size: 0.875rem;
		box-shadow: 0 12px 32px -12px color-mix(in srgb, var(--hfd-accent, #e11d2e) 55%, transparent);
	}

	.hfd-footer__col {
		padding: 0.95rem 1rem;
		border-radius: 16px;
		border: 1px solid rgba(255, 255, 255, 0.07);
		background: rgba(255, 255, 255, 0.025);
	}

	.hfd-footer__col h3 {
		margin-bottom: 0.55rem;
		font-size: 0.62rem;
		letter-spacing: 0.14em;
	}

	.hfd-footer__col ul {
		gap: 0.55rem;
	}

	.hfd-footer__col a {
		display: flex;
		align-items: center;
		min-height: 2.25rem;
		padding: 0.15rem 0;
		font-size: 0.875rem;
		font-weight: 500;
	}

	.hfd-footer__bar {
		margin-top: 1.15rem;
		padding: 1rem 0.85rem 1.35rem;
		border-radius: 18px;
		border: 1px solid rgba(255, 255, 255, 0.06);
		background: rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(10px);
	}

	.hfd-footer__copy {
		font-size: 0.6875rem;
		line-height: 1.55;
	}

	.hfd-footer__legal {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.45rem 0.65rem;
		width: 100%;
	}

	.hfd-footer__legal a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 2.1rem;
		padding: 0.35rem 0.55rem;
		border-radius: 9999px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.04);
		font-size: 0.6875rem;
		font-weight: 600;
		text-align: center;
		line-height: 1.25;
	}
}

/* Homepage flow: no double divider between Featured rail and All escorts catalog */
body.hfd-home #hfd-home-flow > [data-hfd-sec="featured"] + #all-escorts,
body.hfd-home #hfd-home-flow > [data-hfd-sec="featured"] + .hfd-home-catalog {
	border-top: none !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

body.hfd-home:has(#hfd-home-flow section) #models {
	display: none !important;
}
