/**
 * Rich content sections.
 *
 * A library of section treatments the page generator renders from structured data, so a
 * long page never falls into wall-of-text. Each type has its own considered layout and
 * shares the dark violet language set in base.css and page.css.
 *
 * Types, in the order they appear below:
 *   .hfn-statband      big serif figures on a glass rail, for verifiable facts
 *   .hfn-steps         a numbered process with a connecting spine
 *   .hfn-cards         a titled feature grid with drawn icons
 *   .hfn-table-wrap    a scrollable, styled comparison or climate table
 *   .hfn-callout       a note, tip or caution panel with an icon
 *   .hfn-pullquote     an editorial statement in the company voice
 *   .hfn-defs          a glossary of terms
 *   .hfn-split         prose beside a facts panel
 *   .hfn-timeline      a phased vertical timeline
 *   .hfn-figure        a captioned drawn infographic frame
 */

/* -------------------------------------------------------------------------- */
/* Shared section head (Centred across all pages)                              */
/* -------------------------------------------------------------------------- */

.hfn-section__head {
	max-width: 820px;
	margin-inline: auto !important;
	margin-bottom: clamp(32px, 5vh, 48px);
	text-align: center !important;
}

.hfn-section__head p.hfn-section__eyebrow {
	margin: 0 auto 12px !important;
	color: #FFE600 !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 11.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
	text-align: center !important;
	display: block;
}

.hfn-section__head h2 {
	max-width: 28ch !important;
	margin-top: 0 !important;
	margin-inline: auto !important;
	color: #FFFFFF !important;
	font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
	font-size: clamp(26px, 3.2vw, 42px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.025em !important;
	line-height: 1.12 !important;
	text-align: center !important;
	display: block;
}

.hfn-section__head p.hfn-section__lead {
	max-width: 64ch !important;
	margin: 16px auto 0 !important;
	color: #A1A1AA !important;
	font-size: clamp(15px, 1.1vw, 17px) !important;
	line-height: 1.68 !important;
	text-align: center !important;
	display: block;
}

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

.hfn-statband {
	display: grid;
	margin-top: var(--wp--preset--spacing--50);
	padding: clamp(20px, 3vw, 34px);
	gap: clamp(20px, 3vw, 40px);
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: linear-gradient(180deg, var(--glass-hi), rgb(255 255 255 / 1.5%));
}

.hfn-statband__item {
	position: relative;
	padding-left: clamp(20px, 3vw, 40px);
}

.hfn-statband__item:first-child {
	padding-left: 0;
}

.hfn-statband__item::before {
	position: absolute;
	top: 6px;
	bottom: 6px;
	left: 0;
	width: 1px;
	background: var(--line);
	content: "";
}

.hfn-statband__item:first-child::before {
	display: none;
}

.hfn-statband__figure {
	display: block;
	font-family: var(--wp--preset--font-family--sans);
	font-size: clamp(34px, 4.4vw, 52px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ink);
}

.hfn-statband__figure span {
	color: var(--wp--preset--color--primary);
}

.hfn-statband__label {
	display: block;
	margin-top: 10px;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.5;
}

.hfn-statband__note {
	display: block;
	margin-top: 4px;
	color: var(--wp--preset--color--dim);
	font-size: var(--wp--preset--font-size--xs);
}

/* -------------------------------------------------------------------------- */
/* Process steps                                                              */
/* -------------------------------------------------------------------------- */

.hfn-steps {
	display: flex;
	flex-direction: column;
	margin-top: var(--wp--preset--spacing--50);
	counter-reset: hfn-step;
	gap: var(--wp--preset--spacing--40);
	list-style: none;
	padding: 0;
}

.hfn-steps__item {
	position: relative;
	padding-left: clamp(56px, 7vw, 72px);

	counter-increment: hfn-step;
}

.hfn-steps__item::before {
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	width: clamp(38px, 4.6vw, 46px);
	height: clamp(38px, 4.6vw, 46px);
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	background: radial-gradient(120% 120% at 30% 20%, rgba(255, 230, 0, 0.14), rgba(255, 230, 0, 0.04));
	color: var(--wp--preset--color--primary);
	content: counter(hfn-step);
	font-family: var(--wp--preset--font-family--sans);
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 700;
	place-items: center;
}

.hfn-steps__title {
	margin: 6px 0 0;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 600;
}

.hfn-steps__text {
	margin: 10px 0 0;
	max-width: var(--wp--custom--width--measure);
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Feature cards with drawn icons                                             */
/* -------------------------------------------------------------------------- */

.hfn-cards {
	display: grid;
	margin-top: var(--wp--preset--spacing--50);
	gap: var(--wp--preset--spacing--40);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	list-style: none;
	padding: 0;
}

/*
 * The card itself is defined once, in base.css, and that definition governs every card on
 * the site. This file used to redefine .hfn-card, .hfn-card__title and .hfn-card__text,
 * and because it loads after base.css the inner pages ended up with an entirely different
 * card design from the homepage: old glass surface, emerald icon, different radius and
 * type scale. Only the icon, which is unique to these pages, is styled here.
 */
.hfn-card__icon {
	display: grid;
	width: 44px;
	height: 44px;
	margin-bottom: var(--wp--preset--spacing--30);
	border: 1px solid rgba(255, 230, 0, 0.28);
	border-radius: 12px;
	background: rgba(255, 230, 0, 0.10);
	color: #FFE600;
	place-items: center;
}

.hfn-card__icon svg {
	width: 22px;
	height: 22px;
}

/* -------------------------------------------------------------------------- */
/* Table                                                                      */
/* -------------------------------------------------------------------------- */

.hfn-table-wrap {
	margin-top: var(--wp--preset--spacing--50);
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--glass);
}

.hfn-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--wp--preset--font-size--sm);
}

.hfn-table caption {
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
	color: var(--wp--preset--color--dim);
	font-size: var(--wp--preset--font-size--xs);
	text-align: left;
}

.hfn-table th,
.hfn-table td {
	padding: 13px 18px;
	text-align: left;
	vertical-align: top;
}

.hfn-table thead th {
	position: sticky;
	top: 0;
	border-bottom: 1px solid var(--line-strong);
	background: linear-gradient(180deg, var(--glass-hi), rgb(255 255 255 / 2%));
	color: var(--wp--preset--color--ink);
	font-weight: 500;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.hfn-table tbody tr {
	border-top: 1px solid var(--line);
}

.hfn-table tbody tr:nth-child(even) {
	background: rgb(255 255 255 / 1.5%);
}

.hfn-table tbody th {
	color: var(--wp--preset--color--ink);
	font-weight: 500;
	white-space: nowrap;
}

.hfn-table td {
	color: var(--wp--preset--color--muted);
	line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
/* Callouts (tip, note, warning style boxes)                                  */
/* -------------------------------------------------------------------------- */

.hfn-callout {
	display: flex;
	margin-top: var(--wp--preset--spacing--50);
	padding: clamp(20px, 3vw, 30px);
	gap: 18px;
	border: 1px solid var(--line);
	border-left: 3px solid var(--wp--preset--color--primary);
	border-radius: var(--r-md);
	background: var(--glass);
}

.hfn-callout--tip {
	border-left-color: var(--wp--preset--color--ok);
}

.hfn-callout--caution {
	border-left-color: #ffb454;
}

.hfn-callout__icon {
	flex: none;
	width: 26px;
	height: 26px;
	color: var(--wp--preset--color--primary);
}

.hfn-callout--tip .hfn-callout__icon {
	color: var(--wp--preset--color--ok);
}

.hfn-callout--caution .hfn-callout__icon {
	color: #ffb454;
}

.hfn-callout__icon svg {
	width: 100%;
	height: 100%;
}

.hfn-callout__title {
	margin: 0 0 6px;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 600;
}

.hfn-callout__text {
	margin: 0;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Pullquote (editorial, company voice, not a client testimonial)             */
/* -------------------------------------------------------------------------- */

.hfn-pullquote {
	position: relative;
	max-width: 900px;
	margin: var(--wp--preset--spacing--60) auto 0;
	padding: clamp(28px, 4vw, 44px) 0;
	text-align: center;
}

.hfn-pullquote__text {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-size: clamp(24px, 3.2vw, 38px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--wp--preset--color--ink);
	text-wrap: balance;
}

.hfn-pullquote__by {
	display: block;
	margin-top: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--emerald-soft);
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 600;
	letter-spacing: var(--wp--custom--tracking--caps);
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Definitions / glossary                                                     */
/* -------------------------------------------------------------------------- */

.hfn-defs {
	display: grid;
	margin-top: var(--wp--preset--spacing--50);
	gap: var(--wp--preset--spacing--40);
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.hfn-defs__item {
	padding-top: var(--wp--preset--spacing--30);
	border-top: 1px solid var(--line);
}

.hfn-defs__term {
	margin: 0 0 8px;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 600;
	color: var(--wp--preset--color--ink);
}

.hfn-defs__desc {
	margin: 0;
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Split: prose beside a facts panel                                          */
/* -------------------------------------------------------------------------- */

.hfn-split {
	display: grid;
	margin-top: var(--wp--preset--spacing--50);
	gap: clamp(24px, 4vw, 56px);
	grid-template-columns: 1.4fr 1fr;
	align-items: start;
}

.hfn-split__body p {
	margin-top: var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--muted);
	line-height: 1.75;
}

.hfn-split__body p:first-child {
	margin-top: 0;
}

.hfn-split__aside {
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--glass);
}

.hfn-split__aside-title {
	margin: 0 0 var(--wp--preset--spacing--30);
	color: var(--wp--preset--color--emerald-soft);
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 600;
	letter-spacing: var(--wp--custom--tracking--caps);
	text-transform: uppercase;
}

.hfn-factlist {
	margin: 0;
	list-style: none;
	padding: 0;
}

.hfn-factlist div {
	display: flex;
	justify-content: space-between;
	padding: 11px 0;
	border-top: 1px solid var(--line);
	gap: 16px;
}

.hfn-factlist div:first-child {
	border-top: 0;
	padding-top: 0;
}

.hfn-factlist dt {
	color: var(--wp--preset--color--dim);
	font-size: var(--wp--preset--font-size--sm);
}

.hfn-factlist dd {
	margin: 0;
	color: var(--wp--preset--color--ink);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	text-align: right;
}

/* -------------------------------------------------------------------------- */
/* Timeline                                                                    */
/* -------------------------------------------------------------------------- */

.hfn-timeline {
	margin-top: var(--wp--preset--spacing--50);
	list-style: none;
	padding: 0;
}

.hfn-timeline__item {
	position: relative;
	padding: 0 0 var(--wp--preset--spacing--50) 34px;
	border-left: 1px solid var(--line-strong);
}

.hfn-timeline__item:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}

.hfn-timeline__item::before {
	position: absolute;
	top: 2px;
	left: -6px;
	width: 11px;
	height: 11px;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 50%;
	background: var(--wp--preset--color--bg);
	box-shadow: 0 0 0 4px rgb(245 158 11 / 15%);
	content: "";
}

.hfn-timeline__when {
	color: var(--wp--preset--color--emerald-soft);
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 600;
	letter-spacing: var(--wp--custom--tracking--caps);
	text-transform: uppercase;
}

.hfn-timeline__title {
	margin: 6px 0 0;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 600;
}

.hfn-timeline__text {
	margin: 8px 0 0;
	max-width: var(--wp--custom--width--measure);
	color: var(--wp--preset--color--muted);
	font-size: var(--wp--preset--font-size--sm);
	line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Captioned figure frame (for drawn infographics)                            */
/* -------------------------------------------------------------------------- */

.hfn-figure {
	margin-top: var(--wp--preset--spacing--50);
	padding: clamp(20px, 3vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background:
		radial-gradient(120% 100% at 80% 0%, rgba(255, 230, 0, 0.07), transparent 60%),
		var(--glass);
}

.hfn-figure__caption {
	margin: var(--wp--preset--spacing--30) 0 0;
	color: var(--wp--preset--color--dim);
	font-size: var(--wp--preset--font-size--xs);
	text-align: center;
}

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

@media (max-width: 782px) {

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

	.hfn-statband__item {
		padding-left: 0;
	}

	.hfn-statband__item::before {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {

	.hfn-card {
		transition: none;
	}

	.hfn-card:hover {
		transform: none;
	}
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Modern Single Service Page Design Components                               */
/* -------------------------------------------------------------------------- */

/* Section 2: Trust bar & Client Logos (Open, high-end editorial layout) */
.hfn-trust-bar {
	position: relative;
	margin-top: clamp(40px, 6vh, 64px);
	padding: 0 0 clamp(36px, 5vh, 56px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

.hfn-trust-bar__eyebrow,
.hfn-section .hfn-trust-bar__eyebrow,
.entry-content .hfn-trust-bar__eyebrow,
.hfn-trust-bar p.hfn-trust-bar__eyebrow {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-inline: auto !important;
	margin-top: 0 !important;
	margin-bottom: clamp(20px, 3vh, 32px) !important;
	color: #94a3b8 !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 11.5px !important;
	font-weight: 800 !important;
	letter-spacing: 0.22em !important;
	text-align: center !important;
	text-transform: uppercase !important;
}

/* Infinite Logo Marquee Carousel */
.hfn-logo-carousel-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: clamp(36px, 5vh, 52px);
	padding: 8px 0;
	-webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
	mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.hfn-logo-carousel-track {
	display: flex;
	align-items: center;
	gap: clamp(32px, 5vw, 64px);
	width: max-content;
	animation: hfn-logo-marquee 28s linear infinite;
}

.hfn-logo-carousel-track:hover {
	animation-play-state: paused;
}

@keyframes hfn-logo-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.hfn-logo-carousel-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hfn-logo-img {
	height: 32px;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	filter: grayscale(100%) brightness(0.8);
	opacity: 0.65;
	transition: all 0.3s ease;
}

.hfn-logo-img:hover {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
	transform: scale(1.08);
}

.hfn-logo-tag {
	display: inline-block;
	color: #71717A;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(14px, 1.3vw, 17px);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all 0.3s ease;
	opacity: 0.65;
	white-space: nowrap;
}

.hfn-logo-tag:hover {
	color: #FFE600;
	opacity: 1;
	text-shadow: 0 0 16px rgba(255, 230, 0, 0.4);
	transform: scale(1.06);
}

/* 3 Stats Strip */
.hfn-stats-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3.5vw, 48px);
	padding-top: clamp(28px, 4vh, 40px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
	.hfn-stats-strip {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.hfn-stat-box {
	position: relative;
	padding: 0;
	border: none;
	background: transparent;
}

@media (min-width: 861px) {
	.hfn-stat-box:not(:first-child) {
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		padding-left: clamp(24px, 3.5vw, 48px);
	}
}

.hfn-stat-number {
	display: block;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(36px, 3.8vw, 48px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 6px;
}

.hfn-stat-title {
	margin: 0 0 8px;
	color: #FFFFFF;
	font-family: 'Outfit', sans-serif;
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 700;
	line-height: 1.25;
}

.hfn-stat-desc {
	margin: 0;
	color: #9CA3AF;
	font-size: 13.5px;
	line-height: 1.55;
}

/* Section 3: Split Feature with Photo Card */
.hfn-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
	margin-top: clamp(24px, 4vh, 40px);
}

@media (max-width: 900px) {
	.hfn-split {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

.hfn-split__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hfn-split__body p {
	margin: 0;
	color: #D4D4D8;
	font-size: clamp(15px, 1.1vw, 16.5px);
	line-height: 1.75;
}

.hfn-split__aside {
	position: relative;
	width: 100%;
}

.hfn-photo-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	box-shadow: 0 24px 48px -15px rgba(0, 0, 0, 0.7);
	background: #111114;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	aspect-ratio: 4 / 3;
}

.hfn-photo-card:hover {
	border-color: rgba(255, 230, 0, 0.4);
	box-shadow: 0 28px 56px -12px rgba(255, 230, 0, 0.15);
	transform: translateY(-4px);
}

.hfn-photo-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.hfn-photo-card:hover img {
	transform: scale(1.05);
}

.hfn-photo-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	background: rgba(10, 10, 14, 0.85);
	backdrop-filter: blur(12px);
	color: #E4E4E7;
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hfn-photo-callout {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 230, 0, 0.3);
	border-radius: 10px;
	background: rgba(15, 15, 18, 0.9);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hfn-photo-callout p {
	margin: 0;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

/* Section 4: Core Services 8-Card Grid */
.hfn-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 36px;
	list-style: none;
	padding: 0;
}

@media (max-width: 1100px) {
	.hfn-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.hfn-cards {
		grid-template-columns: 1fr;
	}
}

.hfn-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
	backdrop-filter: blur(12px);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hfn-card:hover {
	border-color: rgba(255, 230, 0, 0.4);
	background: linear-gradient(180deg, rgba(255, 230, 0, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
	box-shadow: 0 16px 36px -10px rgba(255, 230, 0, 0.12);
	transform: translateY(-4px);
}

.hfn-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border: 1px solid rgba(255, 230, 0, 0.3);
	border-radius: 12px;
	background: rgba(255, 230, 0, 0.08);
	color: #FFE600;
}

.hfn-card__title {
	margin: 0 0 10px;
	color: #FFFFFF;
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.35;
}

.hfn-card__text {
	margin: 0;
	color: #A1A1AA;
	font-size: 13.5px;
	line-height: 1.6;
	flex-grow: 1;
}

/* Section 5: Side-by-Side Comparison Boards (Friction vs Solution) */
/* ─── Section 5: Comparative Matrix (Paired Row-by-Row Comparison) ─── */
.hfn-compare-matrix {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: clamp(28px, 4vh, 44px);
}

.hfn-compare-headers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 0 16px 8px;
}

@media (max-width: 860px) {
	.hfn-compare-headers {
		display: none;
	}
}

.hfn-compare-head-col {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hfn-compare-head-tag {
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 6px;
}

.hfn-compare-head-tag--risk {
	background: rgba(239, 68, 68, 0.12);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #F87171;
}

.hfn-compare-head-tag--fix {
	background: rgba(255, 230, 0, 0.12);
	border: 1px solid rgba(255, 230, 0, 0.35);
	color: #FFE600;
}

.hfn-compare-head-title {
	margin: 0;
	color: #94A3B8;
	font-size: 13.5px;
	font-weight: 600;
}

/* Individual Comparison Row Card */
.hfn-compare-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	background: #111114;
	border: 1px solid #202026;
	border-radius: 14px;
	padding: 18px 24px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 860px) {
	.hfn-compare-row {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 18px 20px;
	}
}

.hfn-compare-row:hover {
	border-color: rgba(255, 230, 0, 0.35);
	background: #141418;
	transform: translateY(-3px);
	box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 230, 0, 0.08);
}

.hfn-compare-side {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.hfn-compare-side--risk {
	position: relative;
}

@media (min-width: 861px) {
	.hfn-compare-side--risk {
		padding-right: 20px;
		border-right: 1px solid rgba(255, 255, 255, 0.06);
	}
}

.hfn-compare-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hfn-compare-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.hfn-compare-row:hover .hfn-compare-icon {
	transform: scale(1.1);
}

.hfn-compare-icon svg {
	display: block;
}

.hfn-compare-icon--risk {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #F87171;
}

.hfn-compare-icon--fix {
	background: rgba(255, 230, 0, 0.15);
	border: 1px solid rgba(255, 230, 0, 0.35);
	color: #FFE600;
}

.hfn-compare-label-mobile {
	display: none;
	font-family: 'Outfit', sans-serif;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

@media (max-width: 860px) {
	.hfn-compare-label-mobile {
		display: block;
	}
	.hfn-compare-label-mobile.is-risk {
		color: #F87171;
	}
	.hfn-compare-label-mobile.is-fix {
		color: #FFE600;
	}
}

.hfn-compare-title {
	margin: 0 !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}

.hfn-compare-side--risk .hfn-compare-title {
	color: #F1F5F9 !important;
}

.hfn-compare-side--fix .hfn-compare-title {
	color: #FFFFFF !important;
}

.hfn-compare-desc {
	margin: 0 !important;
	color: #94A3B8 !important;
	font-size: 13.5px !important;
	line-height: 1.6 !important;
	padding-left: 36px;
}

@media (max-width: 640px) {
	.hfn-compare-desc {
		padding-left: 0;
	}
}


/* Takeaway Bar */
.hfn-vs-takeaway {
	margin-top: 32px;
	padding: 24px 28px;
	border: 1px solid rgba(255, 230, 0, 0.25);
	border-radius: 16px;
	background: radial-gradient(100% 120% at 50% 0%, rgba(255, 230, 0, 0.05) 0%, rgba(18, 18, 22, 0.9) 100%);
	backdrop-filter: blur(16px);
}

.hfn-vs-takeaway__inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hfn-vs-takeaway__tag {
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hfn-vs-takeaway__text {
	margin: 0;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

/* Section 6: Why Choose Us Pillars (3 + 2 Bento Grid Layout) */
.hfn-pillars-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 22px;
	margin-top: clamp(28px, 4vh, 44px);
}

.hfn-pillar-card {
	padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 30px);
	border: 1px solid #222227;
	border-radius: 16px;
	background: #111114;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 12px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hfn-pillar-card:nth-child(1),
.hfn-pillar-card:nth-child(2),
.hfn-pillar-card:nth-child(3) {
	grid-column: span 2;
}

.hfn-pillar-card:nth-child(4),
.hfn-pillar-card:nth-child(5) {
	grid-column: span 3;
}

@media (max-width: 1024px) {
	.hfn-pillars-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hfn-pillar-card:nth-child(1),
	.hfn-pillar-card:nth-child(2),
	.hfn-pillar-card:nth-child(3),
	.hfn-pillar-card:nth-child(4),
	.hfn-pillar-card:nth-child(5) {
		grid-column: span 1;
	}
	.hfn-pillar-card:nth-child(5) {
		grid-column: span 2;
	}
}

@media (max-width: 680px) {
	.hfn-pillars-grid {
		grid-template-columns: 1fr;
	}
	.hfn-pillar-card:nth-child(1),
	.hfn-pillar-card:nth-child(2),
	.hfn-pillar-card:nth-child(3),
	.hfn-pillar-card:nth-child(4),
	.hfn-pillar-card:nth-child(5) {
		grid-column: span 1;
	}
}

.hfn-pillar-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #FFE600, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hfn-pillar-card:hover {
	border-color: rgba(255, 230, 0, 0.35);
	background: #141418;
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 24px rgba(255, 230, 0, 0.1);
}

.hfn-pillar-card:hover::before {
	opacity: 1;
}

.hfn-pillar-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.hfn-pillar-num {
	display: inline-block;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	background: rgba(255, 230, 0, 0.1);
	border: 1px solid rgba(255, 230, 0, 0.25);
	padding: 3px 9px;
	border-radius: 6px;
}

.hfn-pillar-icon {
	color: #94A3B8;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.hfn-pillar-card:hover .hfn-pillar-icon {
	color: #FFE600;
}

.hfn-pillar-title {
	margin: 0 !important;
	color: #FFFFFF !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(17px, 1.35vw, 19.5px) !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}

.hfn-pillar-desc {
	margin: 0 !important;
	color: #9CA3AF !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
}


/* Section 8: Regions Chip Layout */
.hfn-regions-box {
	margin-top: 32px;
	padding: clamp(28px, 4vw, 40px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.015);
	backdrop-filter: blur(12px);
	text-align: center;
}

.hfn-regions-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 28px;
}

.hfn-region-chip {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.025);
	color: #E4E4E7;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	transition: all 0.25s ease;
}

.hfn-region-chip:hover {
	border-color: #FFE600;
	background: rgba(255, 230, 0, 0.08);
	color: #FFE600;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 230, 0, 0.15);
}

/* Section 9: Meet the Team Cards */
.hfn-team-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 36px;
}

@media (max-width: 860px) {
	.hfn-team-strip {
		grid-template-columns: 1fr;
	}
}

.hfn-team-member-card {
	padding: 32px 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
	backdrop-filter: blur(12px);
	text-align: center;
	transition: all 0.3s ease;
}

.hfn-team-member-card:hover {
	border-color: rgba(255, 230, 0, 0.4);
	transform: translateY(-4px);
	box-shadow: 0 16px 36px -10px rgba(255, 230, 0, 0.12);
}

.hfn-member-avatar {
	width: 68px;
	height: 68px;
	margin: 0 auto 16px;
	border: 2px solid rgba(255, 230, 0, 0.4);
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 230, 0, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	font-weight: 800;
	overflow: hidden;
	flex-shrink: 0;
}

.hfn-member-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hfn-member-name {
	margin: 0 0 4px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
}

.hfn-member-role {
	margin: 0 0 14px;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hfn-member-bio {
	margin: 0;
	color: #A1A1AA;
	font-size: 13.5px;
	line-height: 1.6;
}

/* Section 10: Case Studies & Testimonials */
.hfn-case-studies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
	margin-top: 36px;
}

.hfn-case-card {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
	backdrop-filter: blur(12px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: all 0.3s ease;
}

.hfn-case-card:hover {
	border-color: rgba(255, 230, 0, 0.35);
	transform: translateY(-3px);
}

.hfn-case-title {
	margin: 0 0 4px;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: 700;
}

.hfn-case-row {
	font-size: 13.5px;
	line-height: 1.55;
	color: #A1A1AA;
}

.hfn-case-label {
	color: #FFE600;
	font-weight: 700;
	margin-right: 6px;
}

.hfn-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 28px;
}

.hfn-quote-box {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: radial-gradient(100% 120% at 50% 0%, rgba(255, 230, 0, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	backdrop-filter: blur(12px);
}

.hfn-quote-text {
	margin: 0 0 16px;
	color: #FFFFFF;
	font-style: italic;
	font-size: 14.5px;
	line-height: 1.65;
}

.hfn-quote-author {
	margin: 0;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 12.5px;
	font-weight: 700;
}

/* Section 11: Buyer's Checklist (Strict 3-column Symmetrical Matrix) */
.hfn-buyer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
}

@media (max-width: 992px) {
	.hfn-buyer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.hfn-buyer-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-buyer-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
	backdrop-filter: blur(14px);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hfn-buyer-card:hover {
	border-color: rgba(255, 230, 0, 0.4);
	background: linear-gradient(180deg, rgba(255, 230, 0, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
	box-shadow: 0 16px 36px -12px rgba(255, 230, 0, 0.1);
	transform: translateY(-4px);
}

.hfn-buyer-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.hfn-buyer-num {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #FFE600;
	background: rgba(255, 230, 0, 0.1);
	border: 1px solid rgba(255, 230, 0, 0.3);
	padding: 3px 10px;
	border-radius: 999px;
}

.hfn-buyer-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: #A1A1AA;
	font-size: 11px;
	font-weight: 900;
	transition: all 0.25s ease;
}

.hfn-buyer-card:hover .hfn-buyer-check {
	background: #FFE600;
	color: #000000;
}

.hfn-buyer-title {
	margin: 0 0 10px;
	color: #FFFFFF;
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.35;
}

.hfn-buyer-desc {
	margin: 0;
	color: #9CA3AF;
	font-size: 13.5px;
	line-height: 1.6;
	flex-grow: 1;
}

.hfn-buyer-takeaway {
	margin-top: 32px;
	padding: 24px 28px;
	border: 1px solid rgba(255, 230, 0, 0.25);
	border-radius: 16px;
	background: radial-gradient(100% 120% at 50% 0%, rgba(255, 230, 0, 0.05) 0%, rgba(18, 18, 22, 0.9) 100%);
	backdrop-filter: blur(16px);
}

.hfn-buyer-takeaway__inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hfn-buyer-takeaway__tag {
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hfn-buyer-takeaway__text {
	margin: 0;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

/* Dynamic Service Page Extra Styles */
.hfn-page-hero__micro {
	margin-top: 16px;
	color: #A1A1AA;
	font-size: var(--wp--preset--font-size--xs, 13px);
	text-align: center;
}

/* FAQ accordion */
.hfn-faq-list {
	max-width: 760px;
	margin-inline: auto;
}

.hfn-faq-item {
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hfn-faq-item summary {
	cursor: pointer;
	font-size: 17.5px;
	font-weight: 600;
	color: #FFFFFF;
	list-style: none;
	padding-right: 28px;
	position: relative;
	transition: color 0.2s ease;
}

.hfn-faq-item summary:hover {
	color: #FFE600;
}

.hfn-faq-item summary::-webkit-details-marker {
	display: none;
}

.hfn-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: -2px;
	color: #FFE600;
	font-size: 22px;
	font-weight: 300;
	transition: transform 0.2s ease;
}

.hfn-faq-item[open] summary::after {
	content: "−";
}

.hfn-faq-answer {
	padding-top: 14px;
}

.hfn-faq-answer p {
	margin: 0;
	color: #A1A1AA;
	font-size: 14.5px;
	line-height: 1.7;
}

/* ─── Section 7: Process Timeline & Photo Showcase ─── */
.hfn-process-split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	margin-top: clamp(24px, 4vh, 40px);
}

@media (max-width: 960px) {
	.hfn-process-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.hfn-steps-timeline {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3.5vh, 36px);
	position: relative;
}

.hfn-steps-timeline::before {
	content: "";
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 20px;
	width: 2px;
	background: linear-gradient(to bottom, #FFE600 0%, rgba(255, 230, 0, 0.2) 80%, transparent 100%);
	z-index: 0;
}

.hfn-steps-timeline__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.hfn-step-circle {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #12141c;
	border: 2px solid #FFE600;
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 16px rgba(255, 230, 0, 0.25);
	transition: all 0.3s ease;
}

.hfn-steps-timeline__item:hover .hfn-step-circle {
	background: #FFE600;
	color: #000000;
	transform: scale(1.1);
	box-shadow: 0 0 24px rgba(255, 230, 0, 0.5);
}

.hfn-step-content {
	flex: 1;
}

.hfn-step-title {
	margin: 0 0 6px !important;
	color: #FFFFFF !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: clamp(17px, 1.4vw, 20px) !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}

.hfn-step-desc {
	margin: 0 !important;
	color: #94A3B8 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

.hfn-process-cta-wrap {
	margin-top: clamp(28px, 4vh, 36px);
}

/* Process Photo Card on Right */
.hfn-process-photo-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #11141c;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 50px -15px rgba(0, 0, 0, 0.8);
}

.hfn-process-photo-card img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 400px;
	max-height: 520px;
	object-fit: cover;
	filter: brightness(0.88);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.hfn-process-photo-card:hover img {
	transform: scale(1.04);
	filter: brightness(0.96);
}

.hfn-process-photo-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: rgba(10, 12, 18, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 230, 0, 0.35);
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hfn-process-photo-callout {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 22px;
	background: linear-gradient(to top, rgba(10, 12, 18, 0.95) 0%, rgba(10, 12, 18, 0.75) 70%, transparent 100%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hfn-process-photo-callout p {
	margin: 0;
	color: #E2E8F0;
	font-size: 13.5px;
	line-height: 1.5;
	font-weight: 500;
}

/* ─── Section 8: Regional Production Hubs Matrix ─── */
.hfn-region-matrix {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: clamp(28px, 4vh, 44px);
}

@media (max-width: 1024px) {
	.hfn-region-matrix {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hfn-region-matrix {
		grid-template-columns: 1fr;
	}
}

.hfn-region-card {
	background: #0e111a;
	border: 1px solid #1f2536;
	border-radius: 14px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.hfn-region-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.4), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hfn-region-card:hover {
	border-color: #38bdf8;
	transform: translateY(-4px);
	box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.12);
}

.hfn-region-card:hover::before {
	opacity: 1;
}

.hfn-region-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.hfn-region-card__title {
	margin: 0 !important;
	color: #FFFFFF !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}

.hfn-region-badge {
	background: rgba(255, 230, 0, 0.1);
	border: 1px solid rgba(255, 230, 0, 0.25);
	color: #FFE600;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 6px;
	white-space: nowrap;
	display: inline-block;
}

.hfn-region-card__desc {
	margin: 0 !important;
	color: #94A3B8 !important;
	font-size: 13.5px !important;
	line-height: 1.6 !important;
}

.hfn-region-cta-banner {
	margin-top: clamp(32px, 5vh, 48px);
	background: linear-gradient(135deg, #151518 0%, #0d0d0f 100%);
	border: 1px solid #26262b;
	border-radius: 14px;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.hfn-region-cta-text h4 {
	margin: 0 0 4px !important;
	color: #FFFFFF !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
}

.hfn-region-cta-text p {
	margin: 0 !important;
	color: #94A3B8 !important;
	font-size: 13.5px !important;
}

/* ─── Alternating Section Background & Contrast Treatments ─── */
.hfn-section {
	position: relative;
	margin-block-start: clamp(60px, 9vh, 110px) !important;
}

/* Edge-to-edge full width neutral luxury carbon band */
.hfn-section--alt {
	width: 100vw !important;
	max-width: 100vw !important;
	position: relative !important;
	left: 50% !important;
	right: 50% !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	box-sizing: border-box !important;
	border-radius: 0 !important;
	background: #0f0f12 !important; /* Pure luxury neutral carbon/graphite - zero blue tint */
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
	padding-block: clamp(60px, 9vh, 96px) !important;
	padding-inline: max(24px, calc((100vw - 1240px) / 2)) !important;
	box-shadow: none !important;
}

/* ─── Hero Cinematic Video Background ─── */
.hfn-page-hero--has-video {
	position: relative !important;
	overflow: hidden !important;
	background: #050608 !important;
	min-height: clamp(520px, 65vh, 720px) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding-block: clamp(70px, 11vh, 130px) !important;
}

.hfn-hero-video-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}

.hfn-hero-video-element {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0.55;
	filter: saturate(1.1) brightness(0.85);
}

.hfn-hero-video-iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0.5;
	filter: saturate(1.1) brightness(0.85);
}

.hfn-hero-video-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(5, 6, 8, 0.3) 0%, rgba(5, 6, 8, 0.85) 75%, #050608 100%),
	            linear-gradient(180deg, rgba(5, 6, 8, 0.2) 0%, rgba(5, 6, 8, 0.95) 100%);
	z-index: 2;
}

.hfn-page-hero--has-video .hfn-page-hero__inner {
	position: relative;
	z-index: 3;
}

.hfn-section--closing {
	background: radial-gradient(circle at 50% 0%, rgba(255, 230, 0, 0.08) 0%, transparent 65%), #0f0f12 !important;
	border: 1px solid rgba(255, 230, 0, 0.25) !important;
	border-radius: 20px !important;
	padding-block: clamp(52px, 8vh, 84px) !important;
	padding-inline: clamp(24px, 4vw, 56px) !important;
	text-align: center !important;
	box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 230, 0, 0.06) !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT US: ULTRA-CLEAN LUXURY CINEMATIC DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-about-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
	padding-top: clamp(24px, 4vh, 48px);
	padding-bottom: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	gap: clamp(56px, 8vh, 90px);
	box-sizing: border-box;
}

/* ─── Hero Section with Video Background ─── */
.hfn-about-video-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: clamp(480px, 60vh, 600px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: -24px;
	margin-bottom: 10px;
	padding-block: clamp(60px, 9vh, 90px);
	padding-inline: clamp(20px, 4vw, 40px);
	box-sizing: border-box;
}

.hfn-about-video-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.hfn-about-video-hero__element {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0.45;
	filter: saturate(1.1) brightness(0.85);
}

.hfn-about-video-hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, rgba(5, 6, 8, 0.4) 0%, rgba(5, 6, 8, 0.88) 75%, #050608 100%),
	            linear-gradient(180deg, rgba(5, 6, 8, 0.35) 0%, rgba(5, 6, 8, 0.98) 100%);
	z-index: 2;
}

.hfn-about-video-hero__content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 860px;
	margin-inline: auto;
}

.hfn-about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.25);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffe600;
	margin-bottom: 24px;
}

.hfn-about-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffe600;
	box-shadow: 0 0 8px #ffe600;
}

.hfn-about-video-hero__content h1 {
	font-size: clamp(2.2rem, 3.8vw, 3.4rem);
	line-height: 1.15;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.hfn-about-video-hero__content h1 span {
	color: #ffe600;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
}

.hfn-about-video-hero__content p.hfn-about-lead {
	font-size: clamp(1.05rem, 1.3vw, 1.2rem);
	line-height: 1.7;
	color: #cbd5e1;
	margin-bottom: 32px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hfn-about-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ─── Metric Strip ─── */
.hfn-about-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
	.hfn-about-metrics {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hfn-about-metric-item {
	background: #0c0d11;
	padding: 28px 24px;
	text-align: center;
	transition: background 0.3s ease;
}

.hfn-about-metric-item:hover {
	background: #111318;
}

.hfn-about-metric-num {
	font-size: clamp(2rem, 2.8vw, 2.6rem);
	font-weight: 800;
	color: #ffe600;
	line-height: 1;
	margin-bottom: 8px;
}

.hfn-about-metric-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: #e2e8f0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hfn-about-metric-desc {
	font-size: 0.78rem;
	color: #64748b;
	margin-top: 4px;
}

/* ─── The Story 2-Column Split ─── */
.hfn-about-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
	background: #0d0e12;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: clamp(32px, 5vw, 56px);
}

@media (max-width: 860px) {
	.hfn-about-story {
		grid-template-columns: 1fr;
	}
}

.hfn-about-story-text h2 {
	font-size: clamp(1.8rem, 2.6vw, 2.3rem);
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 700;
}

.hfn-about-story-text p {
	font-size: 1rem;
	line-height: 1.7;
	color: #94a3b8;
	margin-bottom: 16px;
}

.hfn-about-story-media {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 230, 0, 0.2);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
}

.hfn-about-story-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.hfn-about-story-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	background: rgba(5, 6, 8, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 12px 16px;
	color: #f1f5f9;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.4;
}

/* ─── 4 Pillars Bento Grid ─── */
.hfn-about-pillars-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 36px;
}

.hfn-about-pillars-head h2 {
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	color: #ffffff;
	margin-bottom: 12px;
}

.hfn-about-pillars-head p {
	font-size: 1rem;
	color: #94a3b8;
}

.hfn-about-pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.hfn-about-pillar-card {
	background: #0d0e12;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 32px 28px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.hfn-about-pillar-card:hover {
	border-color: rgba(255, 230, 0, 0.3);
	transform: translateY(-3px);
	background: #111217;
	box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.8);
}

.hfn-about-pillar-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 230, 0, 0.1);
	border: 1px solid rgba(255, 230, 0, 0.25);
	color: #ffe600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.hfn-about-pillar-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.hfn-about-pillar-card p {
	font-size: 0.92rem;
	line-height: 1.6;
	color: #94a3b8;
	margin: 0;
}

/* ─── Team Spotlight ─── */
.hfn-about-team-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 36px;
}

.hfn-about-team-head h2 {
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	color: #ffffff;
	margin-bottom: 12px;
}

.hfn-about-team-head p {
	font-size: 1rem;
	color: #94a3b8;
}

.hfn-about-team-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

/*
 * The team section is now the plugin's team-grid block (rendered as the portrait wall),
 * lifted out of the .hfn-about-container flow. These two modifiers close the gap the split
 * would otherwise leave above and below the wall.
 */
.hfn-about-container--head {
	padding-bottom: clamp(28px, 4vh, 44px);
}

.hfn-about-container--tail {
	padding-top: clamp(28px, 4vh, 44px);
}

.hfn-about-container--tail .hfn-about-cta {
	margin-top: 0;
}

.hfn-about-team-box {
	background: #0d0e12;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.3s ease;
}

.hfn-about-team-box:hover {
	border-color: rgba(255, 230, 0, 0.3);
	transform: translateY(-3px);
	background: #111217;
}

.hfn-about-team-header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hfn-about-avatar {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 230, 0, 0.15), rgba(255, 230, 0, 0.03));
	border: 1px solid rgba(255, 230, 0, 0.3);
	color: #ffe600;
	font-weight: 800;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hfn-about-team-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.hfn-about-team-role {
	font-size: 0.8rem;
	color: #ffe600;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 2px 0 0;
}

.hfn-about-team-bio {
	font-size: 0.92rem;
	line-height: 1.65;
	color: #94a3b8;
	margin: 0;
}

.hfn-about-team-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hfn-about-tag {
	font-size: 0.72rem;
	padding: 4px 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: #cbd5e1;
}

/* ─── Closing CTA ─── */
.hfn-about-cta {
	background: radial-gradient(circle at 50% 0%, rgba(255, 230, 0, 0.08) 0%, transparent 65%), #0f0f12;
	border: 1px solid rgba(255, 230, 0, 0.25);
	border-radius: 20px;
	padding: clamp(48px, 7vh, 72px) clamp(24px, 4vw, 56px);
	text-align: center;
	box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 230, 0, 0.06);
}

.hfn-about-cta h2 {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	color: #ffffff;
	margin-bottom: 16px;
	font-weight: 700;
}

.hfn-about-cta h2 span {
	color: #ffe600;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
}

.hfn-about-cta p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #94a3b8;
	margin: 0 auto 32px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES ARCHIVE & PAGE: LUXURY CARD DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-services-page-container {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
	padding-top: clamp(24px, 4vh, 48px);
	padding-bottom: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	gap: clamp(52px, 7vh, 80px);
	box-sizing: border-box;
}

.hfn-service-grid,
.hfn-cards-services-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 28px !important;
	width: 100% !important;
}

@media (max-width: 991px) {
	.hfn-service-grid,
	.hfn-cards-services-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 640px) {
	.hfn-service-grid,
	.hfn-cards-services-grid {
		grid-template-columns: 1fr !important;
	}
}

.hfn-service-card-luxury,
.hfn-card--service,
.hfn-cards .hfn-card {
	background: linear-gradient(180deg, #121319 0%, #0a0b0e 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 18px !important;
	padding: 32px 28px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	position: relative !important;
	overflow: hidden !important;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6) !important;
}

.hfn-service-card-luxury::before,
.hfn-card--service::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 2px !important;
	background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.4), transparent) !important;
	opacity: 0 !important;
	transition: opacity 0.3s ease !important;
}

.hfn-service-card-luxury:hover,
.hfn-card--service:hover,
.hfn-cards .hfn-card:hover {
	border-color: rgba(255, 230, 0, 0.35) !important;
	background: linear-gradient(180deg, #171922 0%, #0d0e14 100%) !important;
	transform: translateY(-6px) !important;
	box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 230, 0, 0.08) !important;
}

.hfn-service-card-luxury:hover::before,
.hfn-card--service:hover::before {
	opacity: 1 !important;
}

/* Card Top Header: Icon + Number Tag */
.hfn-service-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.hfn-service-card__icon,
.hfn-card__icon {
	width: 50px !important;
	height: 50px !important;
	border-radius: 12px !important;
	background: rgba(255, 230, 0, 0.08) !important;
	border: 1px solid rgba(255, 230, 0, 0.25) !important;
	color: #ffe600 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: 0 0 20px rgba(255, 230, 0, 0.08) !important;
	transition: transform 0.3s ease, background 0.3s ease !important;
}

.hfn-service-card-luxury:hover .hfn-service-card__icon,
.hfn-card--service:hover .hfn-card__icon {
	transform: scale(1.08) rotate(-2deg);
	background: rgba(255, 230, 0, 0.15) !important;
	border-color: #ffe600 !important;
}

.hfn-service-card__num {
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.1em;
}

/* Card Title */
.hfn-service-card__title,
.hfn-card__title {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	letter-spacing: -0.01em !important;
	line-height: 1.25 !important;
	margin: 0 0 12px 0 !important;
}

.hfn-service-card__title a,
.hfn-card__title a {
	color: #ffffff !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

/* Whole Card Clickable Overlay */
.hfn-service-card-luxury {
	cursor: pointer;
}

.hfn-service-card__title a::after,
.hfn-card__title a::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	cursor: pointer !important;
}

.hfn-service-card-luxury:hover .hfn-service-card__title a,
.hfn-card--service:hover .hfn-card__title a {
	color: #ffe600 !important;
}

/* Card Body Text */
.hfn-service-card__text,
.hfn-card__text {
	font-size: 0.94rem !important;
	line-height: 1.65 !important;
	color: #94a3b8 !important;
	margin: 0 0 20px 0 !important;
}

/* Feature Bullets in Service Cards */
.hfn-service-card__features {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 24px 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}

.hfn-service-card__features li {
	font-size: 0.82rem !important;
	color: #cbd5e1 !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.hfn-service-card__features li::before {
	content: "" !important;
	width: 5px !important;
	height: 5px !important;
	border-radius: 50% !important;
	background: #ffe600 !important;
	flex-shrink: 0 !important;
}

/* Card Action Footer */
.hfn-service-card__cta,
.hfn-card__cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: #ffe600 !important;
	margin-top: auto !important;
	padding-top: 18px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
	transition: gap 0.25s ease !important;
}

.hfn-service-card-luxury:hover .hfn-service-card__cta,
.hfn-card--service:hover .hfn-card__cta {
	gap: 12px !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FAQ PAGE & ACCORDIONS: DYNAMIC DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-faq-page-container {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
	padding-top: clamp(24px, 4vh, 48px);
	padding-bottom: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	gap: clamp(48px, 7vh, 72px);
	box-sizing: border-box;
}

.hfn-faq-category-block {
	margin-bottom: 48px;
}

.hfn-faq-category-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hfn-faq-cat-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffe600;
	box-shadow: 0 0 10px #ffe600;
	flex-shrink: 0;
}

.hfn-faq-category-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.01em;
}

.hfn-faq-accordion-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hfn-faq-card-item {
	display: block !important;
	width: 100% !important;
	box-sizing: border-box !important;
	background: #0d0e13 !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	position: relative !important;
}

.hfn-faq-card-item:hover {
	border-color: rgba(255, 230, 0, 0.25) !important;
	background: #111218 !important;
}

.hfn-faq-card-item[open] {
	border-color: rgba(255, 230, 0, 0.35) !important;
	background: #12131a !important;
	box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 230, 0, 0.04) !important;
}

.hfn-faq-card-summary {
	padding: 22px 28px !important;
	cursor: pointer !important;
	display: flex !important;
	width: 100% !important;
	box-sizing: border-box !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 20px !important;
	list-style: none !important;
	user-select: none !important;
	font-family: 'Outfit', sans-serif !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	font-size: 1.05rem !important;
	line-height: 1.4 !important;
	transition: color 0.2s ease !important;
}

.hfn-faq-card-summary::-webkit-details-marker,
.hfn-faq-card-summary::marker {
	display: none !important;
}

.hfn-faq-card-summary:hover {
	color: #ffe600 !important;
}

.hfn-faq-card-question {
	flex: 1 1 auto !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.hfn-faq-card-toggle {
	width: 36px !important;
	height: 36px !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ffe600 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
	margin-left: auto !important;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease !important;
}

.hfn-faq-card-item[open] .hfn-faq-card-toggle {
	transform: rotate(45deg) !important;
	background: rgba(255, 230, 0, 0.15) !important;
	border-color: #ffe600 !important;
}

.hfn-faq-card-content {
	padding: 0 28px 24px 28px !important;
	color: #94a3b8 !important;
	font-size: 0.96rem !important;
	line-height: 1.7 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
	padding-top: 18px !important;
}

.hfn-faq-card-content p {
	margin: 0 0 12px 0;
}

.hfn-faq-card-content p:last-child {
	margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE: LUXURY PRODUCTION BRIEF & FIELD HQ DESIGN
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-contact-page-container {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
	padding-top: clamp(24px, 4vh, 48px);
	padding-bottom: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	gap: clamp(48px, 7vh, 72px);
	box-sizing: border-box;
}

.hfn-contact-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

@media (max-width: 900px) {
	.hfn-contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Form Card */
.hfn-contact-form-card {
	background: linear-gradient(180deg, #121319 0%, #0a0b0e 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	padding: clamp(24px, 4vw, 40px);
	box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
	position: relative;
	overflow: hidden;
}

.hfn-contact-form-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.5), transparent);
}

.hfn-contact-form-head {
	margin-bottom: 28px;
}

.hfn-contact-form-head h2 {
	font-size: clamp(1.4rem, 2.2vw, 1.8rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px 0;
	font-family: 'Outfit', sans-serif;
}

.hfn-contact-form-head p {
	font-size: 0.95rem;
	color: #94a3b8;
	margin: 0;
	line-height: 1.5;
}

.hfn-contact-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 18px;
}

@media (max-width: 600px) {
	.hfn-contact-field-row {
		grid-template-columns: 1fr;
	}
}

.hfn-contact-field-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hfn-contact-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #cbd5e1;
	font-family: 'Outfit', sans-serif;
}

.hfn-contact-label span.req {
	color: #ffe600;
}

.hfn-contact-input,
.hfn-contact-select,
.hfn-contact-textarea {
	width: 100%;
	background: #08080c !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 10px !important;
	padding: 12px 16px !important;
	color: #ffffff !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 0.95rem !important;
	transition: all 0.25s ease !important;
	box-sizing: border-box !important;
}

.hfn-contact-input:focus,
.hfn-contact-select:focus,
.hfn-contact-textarea:focus {
	outline: none !important;
	border-color: #ffe600 !important;
	box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15) !important;
	background: #0d0e14 !important;
}

.hfn-contact-checkboxes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 4px;
}

@media (max-width: 500px) {
	.hfn-contact-checkboxes {
		grid-template-columns: 1fr;
	}
}

.hfn-contact-checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: #cbd5e1;
	cursor: pointer;
	user-select: none;
}

.hfn-contact-checkbox-item input[type="checkbox"] {
	accent-color: #ffe600;
	width: 16px;
	height: 16px;
}

.hfn-contact-submit-btn {
	width: 100%;
	background: #ffe600 !important;
	color: #000000 !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 16px 24px !important;
	font-family: 'Outfit', sans-serif !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	margin-top: 10px !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 8px 24px -6px rgba(255, 230, 0, 0.3) !important;
}

.hfn-contact-submit-btn:hover {
	background: #fff04d !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 12px 30px -4px rgba(255, 230, 0, 0.45) !important;
}

.hfn-contact-nda-note {
	font-size: 0.78rem;
	color: #64748b;
	text-align: center;
	margin-top: 14px;
	line-height: 1.4;
}

/* Sidebar Cards */
.hfn-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hfn-contact-sidebar-card {
	background: #0d0e13;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: clamp(24px, 3vw, 32px);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hfn-contact-sidebar-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	font-family: 'Outfit', sans-serif;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hfn-contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.hfn-contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.hfn-contact-info-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.2);
	color: #ffe600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hfn-contact-info-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hfn-contact-info-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #64748b;
	font-weight: 600;
}

.hfn-contact-info-val {
	font-size: 0.95rem;
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hfn-contact-info-val a {
	color: #ffffff;
	text-decoration: none;
}

.hfn-contact-info-val a:hover {
	color: #ffe600;
}

.hfn-contact-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.25);
	color: #4ade80;
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 4px;
}

.hfn-contact-badge-pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 8px #4ade80;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FILMING LOCATIONS: LUXURY CARD & ARCHIVE DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-locations-page-container {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
	padding-top: clamp(24px, 4vh, 48px);
	padding-bottom: clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	gap: clamp(52px, 7vh, 80px);
	box-sizing: border-box;
}

.hfn-location-grid .hfn-grid,
.hfn-locations-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
	gap: 32px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.hfn-card--location {
	background: linear-gradient(180deg, #12131a 0%, #0a0b0f 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	position: relative !important;
	cursor: pointer !important;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6) !important;
}

.hfn-card--location::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 2px !important;
	background: linear-gradient(90deg, transparent, rgba(255, 230, 0, 0.45), transparent) !important;
	opacity: 0 !important;
	z-index: 4 !important;
	transition: opacity 0.3s ease !important;
}

.hfn-card--location:hover {
	border-color: rgba(255, 230, 0, 0.35) !important;
	background: linear-gradient(180deg, #161822 0%, #0c0e14 100%) !important;
	transform: translateY(-6px) !important;
	box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 230, 0, 0.08) !important;
}

.hfn-card--location:hover::before {
	opacity: 1 !important;
}

/* Whole Card Clickable Target */
.hfn-card--location .hfn-card__title a.hfn-card__link::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 3 !important;
	cursor: pointer !important;
}

/* Media / Image */
.hfn-card--location .hfn-card__media,
.hfn-card--location .hfn-card__figure,
.hfn-card--location figure {
	position: relative !important;
	width: 100% !important;
	height: 230px !important;
	overflow: hidden !important;
	margin: 0 !important;
	background: #08080c !important;
}

.hfn-card--location img,
.hfn-card--location .hfn-card__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hfn-card--location:hover img,
.hfn-card--location:hover .hfn-card__image {
	transform: scale(1.07) !important;
}

/* Region Eyebrow */
.hfn-card--location .hfn-card__content {
	padding: 24px 26px 28px !important;
	display: flex !important;
	flex-direction: column !important;
	flex-grow: 1 !important;
	gap: 10px !important;
}

.hfn-card--location .hfn-card__eyebrow {
	font-size: 0.76rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: #ffe600 !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

.hfn-card--location .hfn-card__eyebrow::before {
	content: "" !important;
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	background: #ffe600 !important;
	box-shadow: 0 0 8px #ffe600 !important;
}

/* Location Title */
.hfn-card--location .hfn-card__title {
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	letter-spacing: -0.01em !important;
	line-height: 1.25 !important;
	margin: 0 !important;
	font-family: 'Outfit', sans-serif !important;
}

.hfn-card--location .hfn-card__title a {
	color: #ffffff !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

.hfn-card--location:hover .hfn-card__title a {
	color: #ffe600 !important;
}

/* Location Summary */
.hfn-card--location .hfn-card__text {
	font-size: 0.88rem !important;
	color: #94a3b8 !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	max-height: 3em !important;
}

/* Hide bulky Access & Best Season meta lists for ultra-clean look */
.hfn-card--location .hfn-card__meta {
	display: none !important;
}

/* Sleek Explore Location CTA */
.hfn-card--location .hfn-card__content::after {
	content: "Explore Location Specs →" !important;
	display: inline-block !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: #ffe600 !important;
	margin-top: 14px !important;
	padding-top: 16px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
	transition: transform 0.25s ease !important;
}

.hfn-card--location:hover .hfn-card__content::after {
	transform: translateX(4px) !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER: LUXURY STUDIO DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-footer {
	background: #090a0e !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	position: relative !important;
	margin-top: clamp(60px, 8vh, 100px) !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.hfn-footer-container {
	max-width: 1240px !important;
	margin-inline: auto !important;
	padding: clamp(48px, 6vh, 72px) clamp(20px, 4vw, 40px) 32px !important;
	box-sizing: border-box !important;
}

/* 4-column balanced grid */
.hfn-footer-main-grid {
	display: grid !important;
	grid-template-columns: 1.8fr 1fr 1fr 1.3fr !important;
	gap: clamp(32px, 4vw, 56px) !important;
	margin-bottom: 48px !important;
}

@media (max-width: 1024px) {
	.hfn-footer-main-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 40px !important;
	}
}

@media (max-width: 640px) {
	.hfn-footer-main-grid {
		grid-template-columns: 1fr !important;
		gap: 36px !important;
	}
}

/* Brand Column */
.hfn-footer-brand-col {
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
}

.hfn-footer-logo {
	font-family: 'Outfit', sans-serif !important;
	font-size: 1.45rem !important;
	font-weight: 900 !important;
	letter-spacing: -0.01em !important;
	color: #ffffff !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.hfn-footer-logo-accent {
	color: #ffe600 !important;
	margin-left: 2px !important;
}

.hfn-footer-desc {
	font-size: 0.9rem !important;
	line-height: 1.6 !important;
	color: #94a3b8 !important;
	margin: 0 !important;
	max-width: 36ch !important;
}

.hfn-footer-parent-tag {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 6px 14px !important;
	border-radius: 999px !important;
	background: rgba(255, 230, 0, 0.05) !important;
	border: 1px solid rgba(255, 230, 0, 0.18) !important;
	font-size: 0.78rem !important;
	color: #cbd5e1 !important;
	font-weight: 500 !important;
	width: fit-content !important;
}

.hfn-footer-parent-dot {
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	background: #ffe600 !important;
	box-shadow: 0 0 8px #ffe600 !important;
	flex-shrink: 0 !important;
}

.hfn-footer-parent-tag a {
	color: #ffe600 !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	border-bottom: 1px dashed rgba(255, 230, 0, 0.5) !important;
	transition: all 0.2s ease !important;
}

.hfn-footer-parent-tag a:hover {
	color: #ffffff !important;
	border-bottom-color: #ffffff !important;
}

.hfn-footer-actions-row {
	margin-top: 4px !important;
}

/* Nav Columns */
.hfn-footer-nav-col {
	display: flex !important;
	flex-direction: column !important;
}

.hfn-footer-heading {
	font-family: 'Outfit', sans-serif !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	color: #ffe600 !important;
	margin: 0 0 18px 0 !important;
}

.hfn-footer-links {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 11px !important;
}

.hfn-footer-links li a {
	color: #94a3b8 !important;
	font-size: 0.88rem !important;
	text-decoration: none !important;
	transition: color 0.2s ease, transform 0.2s ease !important;
	display: inline-block !important;
}

.hfn-footer-links li a:hover {
	color: #ffffff !important;
	transform: translateX(3px) !important;
}

/* Contact & Operations Card */
.hfn-footer-contact-card {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.07) !important;
	border-radius: 12px !important;
	padding: 16px 18px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
}

.hfn-footer-contact-item {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
}

.hfn-footer-contact-lbl {
	font-size: 0.7rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: #64748b !important;
	font-weight: 600 !important;
}

.hfn-footer-contact-item a,
.hfn-footer-contact-val {
	color: #cbd5e1 !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

.hfn-footer-contact-item a:hover {
	color: #ffe600 !important;
}

/* Bottom Bar */
.hfn-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
	padding-top: 24px !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 16px !important;
	font-size: 0.82rem !important;
	color: #64748b !important;
}

.hfn-footer-copy {
	margin: 0 !important;
	color: #64748b !important;
}

.hfn-footer-copy a {
	color: #94a3b8 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	transition: color 0.2s ease !important;
}

.hfn-footer-copy a:hover {
	color: #ffe600 !important;
}

.hfn-footer-legal-links {
	display: flex !important;
	gap: 20px !important;
}

.hfn-footer-legal-links a {
	color: #64748b !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

.hfn-footer-legal-links a:hover {
	color: #cbd5e1 !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HOMEPAGE: LUXURY TEAM & LEADERSHIP CARDS
   ══════════════════════════════════════════════════════════════════════════════ */

.hfn-team-luxury-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 28px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
}

@media (max-width: 860px) {
	.hfn-team-luxury-grid {
		grid-template-columns: 1fr !important;
	}
}

.hfn-team-luxury-card {
	background: linear-gradient(180deg, #12131a 0%, #0a0b0f 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 18px !important;
	padding: 28px 30px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
	position: relative !important;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6) !important;
}

.hfn-team-luxury-card:hover {
	border-color: rgba(255, 230, 0, 0.35) !important;
	background: linear-gradient(180deg, #161822 0%, #0d0f16 100%) !important;
	transform: translateY(-5px) !important;
	box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 230, 0, 0.06) !important;
}

.hfn-team-luxury-card__top {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-start !important;
	gap: 16px !important;
}

.hfn-team-luxury-card__avatar-badge {
	width: 50px !important;
	height: 50px !important;
	border-radius: 14px !important;
	background: rgba(255, 230, 0, 0.08) !important;
	border: 1px solid rgba(255, 230, 0, 0.25) !important;
	color: #ffe600 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}

.hfn-team-luxury-card__exp-pill {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	color: #ffe600 !important;
	background: rgba(255, 230, 0, 0.08) !important;
	border: 1px solid rgba(255, 230, 0, 0.2) !important;
	padding: 4px 10px !important;
	border-radius: 999px !important;
}

.hfn-team-luxury-card__name {
	font-family: 'Outfit', sans-serif !important;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.25 !important;
}

.hfn-team-luxury-card__role {
	font-size: 0.82rem !important;
	font-weight: 600 !important;
	color: #ffe600 !important;
	margin: 3px 0 0 0 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
}

.hfn-team-luxury-card__bio {
	font-size: 0.9rem !important;
	color: #94a3b8 !important;
	line-height: 1.6 !important;
	margin: 0 !important;
	flex-grow: 1 !important;
}

.hfn-team-luxury-card__skills {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	padding-top: 14px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.hfn-team-luxury-card__tag {
	font-size: 0.75rem !important;
	color: #cbd5e1 !important;
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILMING LOCATION DYNAMIC MASTER LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section 1: Hero & Badges */
.hfn-location-hero {
	position: relative !important;
	overflow: hidden !important;
	background: #050608 !important;
	min-height: clamp(480px, 55vh, 620px) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding-block: clamp(90px, 13vh, 140px) !important;
	text-align: center !important;
}

.hfn-location-hero .hfn-page-hero__inner {
	position: relative !important;
	z-index: 5 !important;
	max-width: 920px !important;
	margin-inline: auto !important;
	padding-inline: 24px !important;
}

.hfn-location-hero .hfn-location-hero-bg {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	opacity: 0.38 !important;
	filter: saturate(1.1) brightness(0.8) !important;
	z-index: 1 !important;
}

.hfn-location-hero .hfn-hero-video-overlay {
	position: absolute !important;
	inset: 0 !important;
	background: radial-gradient(circle at 50% 30%, rgba(5, 6, 8, 0.35) 0%, rgba(5, 6, 8, 0.88) 75%, #050608 100%),
	            linear-gradient(180deg, rgba(5, 6, 8, 0.3) 0%, rgba(5, 6, 8, 0.98) 100%) !important;
	z-index: 2 !important;
}

.hfn-location-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.hfn-location-region-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 230, 0, 0.12);
	color: #FFE600;
	border: 1px solid rgba(255, 230, 0, 0.35);
	padding: 5px 14px;
	border-radius: 9999px;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Section 2: Production Metrics Quick-Facts Strip */
.hfn-location-metrics-section {
	padding-top: 0 !important;
	margin-top: -36px;
	position: relative;
	z-index: 10;
}

.hfn-location-metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

@media (max-width: 960px) {
	.hfn-location-metrics-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 600px) {
	.hfn-location-metrics-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

.hfn-metric-box {
	background: #111115;
	border: 1px solid #202028;
	border-radius: 14px;
	padding: 20px 22px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hfn-metric-box:hover {
	border-color: rgba(255, 230, 0, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.5);
}

.hfn-metric-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.25);
	color: #FFE600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hfn-metric-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hfn-metric-label {
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #71717A;
}

.hfn-metric-value {
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.3;
}

.hfn-metric-sub {
	font-size: 12px;
	color: #A1A1AA;
	margin-top: 2px;
	line-height: 1.4;
}

/* Section 4: Filming Highlights & Key Frames Grid */
.hfn-location-frames-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 960px) {
	.hfn-location-frames-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hfn-location-frames-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-location-frame-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hfn-location-frame-card:hover {
	border-color: rgba(255, 230, 0, 0.35);
	transform: translateY(-3px);
	box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.6);
}

.hfn-location-frame-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.hfn-location-frame-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.2);
	color: #FFE600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hfn-location-frame-num {
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #52525B;
	text-transform: uppercase;
}

.hfn-location-frame-title {
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 10px;
	line-height: 1.35;
}

.hfn-location-frame-desc {
	font-size: 13.5px;
	color: #A1A1AA;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

/* Section 5: Access & Logistics Grid */
.hfn-location-logistics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 800px) {
	.hfn-location-logistics-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-logistics-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 24px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hfn-logistics-card--pitfall {
	background: rgba(239, 68, 68, 0.04);
	border-color: rgba(239, 68, 68, 0.25);
}

.hfn-logistics-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hfn-logistics-svg {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.2);
	color: #FFE600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hfn-logistics-card__head h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}

.hfn-logistics-card p {
	font-size: 14px;
	color: #A1A1AA;
	line-height: 1.65;
	margin: 0;
}

/* Section 6: Permits Matrix */
.hfn-permits-matrix {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hfn-permit-row {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 20px 24px;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: center;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.hfn-permit-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

.hfn-permit-row:hover {
	border-color: rgba(255, 230, 0, 0.3);
}

.hfn-permit-badge {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 8px;
	text-align: center;
	display: inline-block;
}

.hfn-permit-badge--moic {
	background: rgba(255, 230, 0, 0.12);
	color: #FFE600;
	border: 1px solid rgba(255, 230, 0, 0.35);
}

.hfn-permit-badge--park {
	background: rgba(59, 130, 246, 0.12);
	color: #60A5FA;
	border: 1px solid rgba(59, 130, 246, 0.35);
}

.hfn-permit-badge--local {
	background: rgba(168, 85, 247, 0.12);
	color: #C084FC;
	border: 1px solid rgba(168, 85, 247, 0.35);
}

.hfn-permit-badge--drone {
	background: rgba(236, 72, 153, 0.12);
	color: #F472B6;
	border: 1px solid rgba(236, 72, 153, 0.35);
}

.hfn-permit-details h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 6px;
}

.hfn-permit-details p {
	font-size: 13.5px;
	color: #A1A1AA;
	line-height: 1.6;
	margin: 0;
}

.hfn-permit-summary-box {
	background: rgba(255, 230, 0, 0.05);
	border: 1px solid rgba(255, 230, 0, 0.25);
	border-radius: 12px;
	padding: 18px 22px;
	margin-top: 20px;
}

.hfn-permit-summary-box h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #FFE600;
	margin: 0 0 6px;
}

.hfn-permit-summary-box p {
	font-size: 13.5px;
	color: #D4D4D8;
	line-height: 1.6;
	margin: 0;
}

/* Section 7: Seasonal Weather Windows */
.hfn-seasons-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 1024px) {
	.hfn-seasons-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.hfn-seasons-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-season-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hfn-season-tag {
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFE600;
}

.hfn-season-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}

.hfn-season-card p {
	font-size: 13px;
	color: #A1A1AA;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

.hfn-lighting-notes-box {
	margin-top: 20px;
	background: #111115;
	border: 1px solid #202028;
	border-radius: 12px;
	padding: 16px 20px;
}

.hfn-lighting-notes-inner {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 13.5px;
	color: #D4D4D8;
	line-height: 1.6;
}

.hfn-lighting-icon {
	color: #FFE600;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* Section 8: Basecamp & Infrastructure */
.hfn-basecamp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

@media (max-width: 1024px) {
	.hfn-basecamp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.hfn-basecamp-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-basecamp-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hfn-basecamp-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 230, 0, 0.08);
	border: 1px solid rgba(255, 230, 0, 0.2);
	color: #FFE600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hfn-basecamp-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}

.hfn-basecamp-card p {
	font-size: 13.5px;
	color: #A1A1AA;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

/* Section 9: Safety & Medevac */
.hfn-safety-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 860px) {
	.hfn-safety-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-safety-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hfn-safety-num {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	color: #FFE600;
	background: rgba(255, 230, 0, 0.1);
	border: 1px solid rgba(255, 230, 0, 0.25);
	padding: 3px 10px;
	border-radius: 6px;
	align-self: flex-start;
}

.hfn-safety-card h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
}

.hfn-safety-card p {
	font-size: 13.5px;
	color: #A1A1AA;
	line-height: 1.6;
	margin: 0;
}

/* Section 10: Technical Gear Packages */
.hfn-gear-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

@media (max-width: 768px) {
	.hfn-gear-grid {
		grid-template-columns: 1fr;
	}
}

.hfn-gear-card {
	background: #111115;
	border: 1px solid #1E1E26;
	border-radius: 14px;
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hfn-gear-tag {
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #FFE600;
}

.hfn-gear-card p {
	font-size: 13.5px;
	color: #CBD5E1;
	line-height: 1.65;
	margin: 0;
}














