:root {
	--fva-bg: #0f1014;
	--fva-surface: #17181d;
	--fva-surface-2: #202229;
	--fva-text: #f6f3ec;
	--fva-muted: #b9b2a6;
	--fva-accent: #d8b36a;
	--fva-accent-2: #7fb8b2;
	--fva-danger: #ff8a80;
	--fva-success: #91d7a6;
	--fva-border: rgba(255, 255, 255, 0.14);
	--fva-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
	--fva-radius: 8px;
	--fva-header: 64px;
	color-scheme: dark;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fva-bg);
	color: var(--fva-text);
	font-family: var(--fva-font, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		radial-gradient(circle at 15% 8%, rgba(216, 179, 106, 0.18), transparent 28rem),
		radial-gradient(circle at 88% 30%, rgba(127, 184, 178, 0.16), transparent 26rem),
		linear-gradient(145deg, #0b0c10 0%, var(--fva-bg) 48%, #15110d 100%);
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--fva-accent);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
	outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--fva-accent);
}

.container {
	width: min(1120px, calc(100% - 24px));
	margin-inline: auto;
}

.narrow {
	width: min(820px, calc(100% - 24px));
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--fva-text);
	color: #111;
	border-radius: var(--fva-radius);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	min-height: var(--fva-header);
	background: rgba(15, 16, 20, 0.88);
	border-bottom: 1px solid var(--fva-border);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	min-height: var(--fva-header);
}

.site-brand,
.site-brand a {
	display: inline-flex;
	align-items: center;
	min-width: max-content;
	color: var(--fva-text);
	text-decoration: none;
}

.site-brand img {
	max-height: 48px;
	width: auto;
}

.site-brand-text {
	font-weight: 900;
	letter-spacing: 0;
	font-size: 1.14rem;
}

.site-brand-text span {
	color: var(--fva-accent);
}

.primary-nav {
	position: absolute;
	top: var(--fva-header);
	left: 0;
	right: 0;
	display: none;
	padding: 10px 16px 16px;
	background: rgba(15, 16, 20, 0.98);
	border-bottom: 1px solid var(--fva-border);
}

.primary-nav.is-open {
	display: block;
}

.primary-nav .menu {
	display: grid;
	justify-content: stretch;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	display: block;
	padding: 10px 12px;
	color: var(--fva-muted);
	text-decoration: none;
	border-radius: var(--fva-radius);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--fva-text);
	background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
	display: block;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--fva-text);
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--fva-text);
	text-decoration: none;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
button.button:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.1);
	color: var(--fva-text);
}

.button-primary {
	background: var(--fva-accent);
	border-color: var(--fva-accent);
	color: #18120b;
	font-weight: 800;
}

.button-primary:hover {
	background: #efca83;
	color: #18120b;
}

.button-ghost {
	border-color: rgba(216, 179, 106, 0.38);
}

.header-cta {
	display: none;
	min-width: 132px;
}

.breadcrumbs {
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid var(--fva-border);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: min(1120px, calc(100% - 24px));
	margin: 0 auto;
	padding: 10px 0;
	list-style: none;
	color: var(--fva-muted);
	font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: rgba(255, 255, 255, 0.32);
}

.hero-section {
	position: relative;
	overflow: hidden;
	min-height: auto;
	padding: 56px 0;
	isolation: isolate;
}

.hero-section::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
	background-image:
		linear-gradient(90deg, rgba(15, 16, 20, 0.98) 0%, rgba(15, 16, 20, 0.78) 45%, rgba(15, 16, 20, 0.42) 100%),
		var(--hero-image, linear-gradient(135deg, rgba(216, 179, 106, 0.22), rgba(127, 184, 178, 0.18)));
	background-size: cover;
	background-position: center;
}

.hero-section::after {
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 42%;
	content: "";
	background: linear-gradient(0deg, var(--fva-bg), transparent);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: clamp(28px, 6vw, 72px);
}

.hero-copy h1,
.page-hero h1 {
	max-width: 920px;
	margin: 0;
	font-size: clamp(2.1rem, 13vw, 3.4rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero-copy p,
.page-hero p,
.section-heading p {
	max-width: 760px;
	color: var(--fva-muted);
	font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.eyebrow,
.card-kicker {
	margin: 0 0 12px;
	color: var(--fva-accent);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-actions,
.hero-proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.hero-actions .button {
	width: 100%;
}

.hero-proof {
	padding: 0;
	list-style: none;
	color: var(--fva-muted);
}

.hero-proof li {
	padding: 6px 10px;
	border: 1px solid var(--fva-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
}

.hero-frame {
	aspect-ratio: 16 / 9;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
		radial-gradient(circle at 20% 20%, rgba(216, 179, 106, 0.5), transparent 32%),
		linear-gradient(145deg, #1a1b21, #0c0d11);
	box-shadow: var(--fva-shadow);
}

.hero-frame-inner {
	display: grid;
	align-content: end;
	height: 100%;
	padding: 24px;
	font-size: clamp(2.2rem, 6vw, 5rem);
	font-weight: 950;
	line-height: 0.9;
	color: rgba(246, 243, 236, 0.92);
}

.hero-frame .video-placeholder {
	height: 100%;
	min-height: 100%;
	border: 0;
}

.hero-frame-inner span:nth-child(2) {
	color: var(--fva-accent);
}

.content-section,
.page-hero {
	padding: 56px 0;
}

.page-hero.compact {
	padding: clamp(54px, 8vw, 92px) 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
}

.service-hero {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
}

.hero-media img,
.featured-media {
	width: 100%;
	border-radius: var(--fva-radius);
	border: 1px solid var(--fva-border);
	box-shadow: var(--fva-shadow);
}

.section-heading {
	display: grid;
	gap: 10px;
	max-width: 850px;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: 0;
}

.service-grid,
.package-grid,
.post-grid,
.testimonial-grid,
.video-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.package-grid {
	align-items: stretch;
}

.service-card,
.package-card,
.archive-card,
.testimonial-card,
.detail-panel,
.empty-state {
	position: relative;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.service-card a,
.archive-card a {
	display: grid;
	gap: 14px;
	height: 100%;
	padding: 14px;
	color: var(--fva-text);
	text-decoration: none;
}

.service-card img,
.archive-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: calc(var(--fva-radius) - 2px);
	background: var(--fva-surface-2);
}

.service-card h3,
.archive-card h2,
.package-card h3,
.testimonial-card h3 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.2;
}

.service-card p,
.archive-card p,
.package-card p,
.testimonial-card p {
	margin: 0;
	color: var(--fva-muted);
}

.package-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 22px;
}

.package-card.is-featured {
	border-color: rgba(216, 179, 106, 0.64);
	background: linear-gradient(180deg, rgba(216, 179, 106, 0.14), rgba(255, 255, 255, 0.06));
}

.badge {
	align-self: start;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(216, 179, 106, 0.15);
	color: var(--fva-accent);
	font-size: 0.78rem;
	font-weight: 800;
}

.price {
	color: var(--fva-accent);
	font-size: clamp(1.45rem, 3vw, 2.2rem);
	font-weight: 900;
	line-height: 1.1;
}

.package-card ul,
.detail-panel ul,
.contact-list,
.footer-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.package-card li,
.detail-panel li {
	position: relative;
	padding-left: 18px;
	color: var(--fva-muted);
}

.package-card li::before,
.detail-panel li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	background: var(--fva-accent-2);
	border-radius: 50%;
}

.media-grid,
.portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.media-tile {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	color: var(--fva-text);
	text-decoration: none;
	border-radius: var(--fva-radius);
	background: var(--fva-surface);
	border: 1px solid var(--fva-border);
}

.media-tile a {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.media-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.media-tile:hover img {
	transform: scale(1.035);
}

.media-tile span {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	gap: 2px;
	padding: 28px 14px 14px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.media-tile small {
	color: var(--fva-muted);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.filter-button {
	min-height: 38px;
	padding: 7px 12px;
	color: var(--fva-muted);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--fva-border);
	border-radius: 999px;
	cursor: pointer;
}

.filter-button.is-active {
	color: #18120b;
	background: var(--fva-accent);
	border-color: var(--fva-accent);
}

.portfolio-item.is-hidden {
	display: none;
}

.video-card {
	min-height: 260px;
}

.video-placeholder {
	position: relative;
	display: flex;
	align-items: end;
	width: 100%;
	height: 100%;
	min-height: 260px;
	padding: 18px;
	overflow: hidden;
	color: var(--fva-text);
	text-align: left;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08)),
		linear-gradient(135deg, rgba(216, 179, 106, 0.2), rgba(127, 184, 178, 0.22)),
		var(--fva-surface);
	background-position: center;
	background-size: cover;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	cursor: pointer;
}

.video-placeholder strong,
.video-placeholder small {
	display: block;
}

.video-placeholder small {
	color: var(--fva-muted);
}

.play-mark {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--fva-accent);
}

.play-mark::before {
	position: absolute;
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	content: "";
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid #16110b;
	transform: translate(-50%, -50%);
}

.video-card iframe,
.video-single iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	border-radius: var(--fva-radius);
}

.split-section,
.contact-grid,
.footer-grid,
.package-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(24px, 5vw, 54px);
	align-items: start;
}

.audience-list,
.local-link-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.audience-list li,
.local-link-grid a {
	padding: 14px;
	color: var(--fva-text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
}

.local-link-grid a:hover {
	background: rgba(216, 179, 106, 0.1);
}

.testimonial-card,
.detail-panel,
.empty-state {
	padding: 22px;
}

.rating {
	color: var(--fva-accent);
	letter-spacing: 0.08em;
}

blockquote {
	margin: 0;
}

.testimonial-card p span {
	display: block;
	color: var(--fva-muted);
}

.faq-list {
	display: grid;
	gap: 10px;
}

details {
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	background: rgba(255, 255, 255, 0.055);
}

summary {
	padding: 18px;
	cursor: pointer;
	font-weight: 800;
}

details > div,
details > p {
	padding: 0 18px 18px;
	color: var(--fva-muted);
}

.contact-form {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

label {
	display: grid;
	gap: 6px;
	color: var(--fva-muted);
	font-weight: 700;
}

input,
select,
textarea {
	width: 100%;
	padding: 12px 13px;
	color: var(--fva-text);
	background: rgba(0, 0, 0, 0.24);
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
}

textarea {
	resize: vertical;
}

.privacy-check {
	grid-template-columns: 20px 1fr;
	align-items: start;
	font-weight: 500;
}

.privacy-check input {
	width: 18px;
	height: 18px;
	margin-top: 4px;
}

.form-message {
	padding: 12px 14px;
	border-radius: var(--fva-radius);
}

.form-message.success {
	color: #092412;
	background: var(--fva-success);
}

.form-message.error {
	color: #2b0908;
	background: var(--fva-danger);
}

.entry-content {
	color: rgba(246, 243, 236, 0.92);
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.entry-content h2,
.entry-content h3 {
	line-height: 1.15;
}

.entry-content a {
	color: var(--fva-accent);
}

.wp-block-image img,
.wp-block-gallery img {
	border-radius: var(--fva-radius);
}

.pagination-wrap {
	margin-top: 32px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 5px 10px;
	border: 1px solid var(--fva-border);
	border-radius: var(--fva-radius);
	text-decoration: none;
}

.site-footer {
	padding: 56px 0 28px;
	background: #090a0d;
	border-top: 1px solid var(--fva-border);
}

.site-footer h2 {
	margin: 0 0 12px;
	font-size: 1rem;
}

.site-footer p,
.site-footer a {
	color: var(--fva-muted);
}

.footer-menu,
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu {
	display: grid;
}

.social-links a,
.footer-menu a {
	text-decoration: none;
}

.footer-bottom {
	display: grid;
	gap: 12px;
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--fva-border);
}

.lightbox-dialog {
	width: min(1120px, calc(100% - 28px));
	padding: 0;
	background: transparent;
	border: 0;
}

.lightbox-dialog::backdrop {
	background: rgba(0, 0, 0, 0.82);
}

.lightbox-dialog img {
	width: 100%;
	max-height: 86vh;
	object-fit: contain;
	border-radius: var(--fva-radius);
}

.lightbox-close {
	position: fixed;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #111;
	background: var(--fva-text);
	border: 0;
	border-radius: var(--fva-radius);
	cursor: pointer;
}

@media (min-width: 641px) {
	:root {
		--fva-header: 76px;
	}

	.container,
	.breadcrumbs ol {
		width: min(100% - 32px, 1120px);
	}

	.narrow {
		width: min(100% - 32px, 820px);
	}

	.service-grid,
	.package-grid,
	.post-grid,
	.testimonial-grid,
	.video-grid,
	.media-grid,
	.portfolio-grid,
	.audience-list,
	.local-link-grid,
	.form-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-actions .button {
		width: auto;
	}

	.footer-bottom {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

@media (min-width: 921px) {
	.hero-copy h1,
	.page-hero h1 {
		font-size: clamp(2.45rem, 6.4vw, 5.65rem);
	}

	.content-section,
	.page-hero {
		padding: clamp(64px, 10vw, 112px) 0;
	}

	.service-grid,
	.package-grid,
	.post-grid,
	.testimonial-grid,
	.video-grid,
	.media-grid,
	.portfolio-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.header-inner {
		grid-template-columns: auto 1fr auto;
		justify-content: initial;
	}

	.menu-toggle {
		display: none;
	}

	.primary-nav {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border-bottom: 0;
	}

	.primary-nav .menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.header-cta {
		display: inline-flex;
	}

	.hero-section {
		min-height: calc(100svh - var(--fva-header));
		padding: clamp(72px, 10vw, 136px) 0 64px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
	}

	.hero-frame {
		aspect-ratio: 4 / 5;
	}

	.split-section,
	.contact-grid,
	.footer-grid,
	.package-detail-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}
