.hero.subpage-hero {
	min-height: auto;
	padding: 10rem 0 6rem;
}

.hero.subpage-hero .hero-content {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.hero.subpage-hero .hero-text {
	max-width: 52rem;
	margin: 0 auto;
}

.hero.subpage-hero .hero-buttons {
	align-items: center;
}

.hero.subpage-hero .trust-badges {
	justify-content: center;
}

.hero.subpage-hero .scroll-indicator {
	display: none;
}

@media (min-width: 768px) {
	.hero.subpage-hero .hero-buttons {
		flex-direction: row;
		justify-content: center;
	}
}

.desktop-nav a {
	background: none;
	border: none;
	font-weight: 500;
	color: var(--gray-700);
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-primary);
	font-size: 1rem;
	padding: 0.5rem 0;
	position: relative;
	text-decoration: none;
}

.desktop-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	background-color: var(--primary-blue);
	transition: all 0.3s ease;
}

.desktop-nav a:hover {
	color: var(--primary-blue);
}

.desktop-nav a:hover::after {
	width: 100%;
	left: 0;
}

.mobile-nav a {
	background: none;
	border: none;
	font-weight: 500;
	color: var(--gray-700);
	cursor: pointer;
	text-align: left;
	padding: 0.5rem 0;
	font-family: var(--font-primary);
	font-size: 1rem;
	text-decoration: none;
}

.footer-links a {
	background: none;
	border: none;
	color: white;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease;
	font-family: var(--font-primary);
	font-weight: 400;
	padding: 0;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--accent-gold-light);
}

.primary-button {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gallery-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
	margin: 0 auto 2rem;
}

.gallery-filters {
	padding: 4rem 0;
	background: white;;
}

.gallery-filter {
	appearance: none;
	border: 1px solid var(--gray-200);
	background: rgba(255, 255, 255, 0.8);
	color: var(--gray-800);
	border-radius: 999px;
	padding: 0.6rem 1rem;
	font-family: var(--font-primary);
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	box-shadow: var(--soft-shadow);
}

.gallery-filter:hover {
	transform: translateY(-1px);
	border-color: rgba(37, 99, 235, 0.35);
}

.gallery-filter.is-active {
	background: var(--primary-blue);
	border-color: var(--primary-blue);
	color: white;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
	margin: 0 auto;
}

.gallery-card {
	appearance: none;
	border: 0;
	padding: 0;
	text-align: left;
	background: var(--card-gradient);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--comic-shadow);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--medium-shadow);
}

.gallery-card:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.35);
	outline-offset: 3px;
}

.gallery-thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.6);
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-thumb-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.gallery-thumb-pair img {
	aspect-ratio: 1 / 1;
}

.gallery-pair-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: rgba(37, 99, 235, 0.95);
	color: white;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	box-shadow: var(--soft-shadow);
}

.gallery-meta {
	padding: 1rem 1rem 1.1rem;
}

.gallery-label {
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}

.gallery-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gallery-tags span {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--primary-blue);
	font-weight: 700;
	font-size: 0.8rem;
}

.gallery-spotlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.ba-card {
	background: white;
	border-radius: 20px;
	padding: 1.25rem;
	box-shadow: var(--soft-shadow);
	border: 1px solid rgba(74, 144, 226, 0.12);
}

.ba-title {
	margin: 0 0 0.9rem;
	color: var(--primary-blue);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.25rem;
}

.ba-slider {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: rgba(255, 255, 255, 0.6);
	--pos: 50%;
	box-shadow: var(--comic-shadow);
}

.ba-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ba-before {
	clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-handle {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ba-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--pos);
	width: 2px;
	transform: translateX(-1px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ba-knob {
	position: absolute;
	top: 50%;
	left: var(--pos);
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.98);
	color: white;
	box-shadow: var(--medium-shadow);
}

.ba-labels {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem;
	pointer-events: none;
}

.ba-labels span {
	background: rgba(0, 0, 0, 0.55);
	color: white;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
}

.ba-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
}

.ba-range:focus-visible {
	opacity: 0;
	outline: 3px solid rgba(37, 99, 235, 0.35);
	outline-offset: -3px;
}

.gallery-cta-strip {
	padding: 3.5rem 0;
}

.gallery-cta-inner {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(217, 119, 6, 0.08));
	border: 1px solid rgba(74, 144, 226, 0.18);
	border-radius: 24px;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.5rem;
	align-items: center;
	box-shadow: var(--soft-shadow);
}

.gallery-cta-text h2 {
	margin: 0 0 0.5rem;
	color: var(--primary-blue);
	font-family: var(--font-heading);
	font-weight: 800;
}

.gallery-cta-text p {
	margin: 0;
	color: var(--gray-700);
	line-height: 1.6;
}

.gallery-cta-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-end;
}

.gallery-cta-actions .primary-button {
	padding: 0.95rem 1.25rem;
	border-radius: 16px;
}

.cta-link {
	color: var(--primary-blue);
	font-weight: 800;
	text-decoration: none;
}

.cta-link:hover {
	text-decoration: underline;
}

.lightbox {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 9999;
}

.lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 7, 18, 0.72);
}

.lightbox-dialog {
	position: relative;
	width: min(980px, calc(100% - 2rem));
	border-radius: 22px;
	overflow: hidden;
	background: white;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--soft-shadow);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-900);
	z-index: 2;
}

.lightbox-close:hover {
	background: white;
}

.lightbox-media {
	position: relative;
	background: rgba(0, 0, 0, 0.04);
	aspect-ratio: 16 / 10;
}

.lightbox-img,
.lightbox-img-alt {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.lightbox-img-alt {
	display: none;
}

.lightbox.is-pair .lightbox-toggle {
	display: inline-flex;
}

.lightbox-toggle {
	display: none;
	gap: 0.35rem;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 999px;
	padding: 0.25rem;
}

.lightbox-toggle-btn {
	border: 0;
	background: transparent;
	color: var(--primary-blue);
	font-weight: 800;
	font-family: var(--font-primary);
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	cursor: pointer;
}

.lightbox-toggle-btn.is-active {
	background: var(--primary-blue);
	color: white;
}

.lightbox-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-top: 1px solid var(--gray-200);
}

.lightbox-caption {
	font-weight: 700;
	color: var(--gray-800);
	text-align: right;
}

.lightbox-nav {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 0.5rem;
}

.lightbox-prev,
.lightbox-next {
	pointer-events: auto;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--soft-shadow);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-900);
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background: white;
}

@media (max-width: 820px) {
	.gallery-cta-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.gallery-cta-actions {
		align-items: center;
	}
}

.faq-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
	margin-top: 1.5rem;
}

.faq-accordion {
	padding: 2.5rem 0 4rem;
}

.faq-group-title {
	font-family: var(--font-heading);
	color: var(--primary-blue);
	font-weight: 800;
	font-size: clamp(1.4rem, 2vw, 2rem);
	margin: 2.25rem 0 1rem;
	text-align: center;
}

.faq-group {
	max-width: 60rem;
	margin: 0 auto;
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	background: white;
	border-radius: 18px;
	border: 1px solid rgba(74, 144, 226, 0.16);
	box-shadow: var(--soft-shadow);
	overflow: hidden;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1rem 1.1rem;
	font-weight: 800;
	color: var(--gray-900);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.08);
	color: var(--primary-blue);
	font-weight: 900;
}

.faq-item[open] summary::after {
	content: "–";
	background: rgba(37, 99, 235, 0.14);
}

.faq-item summary:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.35);
	outline-offset: -3px;
}

.faq-answer {
	padding: 0 1.1rem 1.1rem;
	color: var(--gray-700);
	line-height: 1.7;
}

.faq-answer p {
	margin: 0;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: var(--gray-700);
	margin: 0;
}

.breadcrumbs a {
	color: var(--primary-blue);
	text-decoration: none;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.post-header {
	max-width: 64rem;
	margin: 0 auto;
	text-align: center;
}

.post-kicker {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.post-title {
	font-family: var(--font-heading);
	font-weight: 900;
	color: var(--gray-900);
	line-height: 1.15;
	font-size: clamp(2rem, 3vw, 3rem);
	margin: 0 0 0.75rem;
}

.post-excerpt {
	margin: 0 auto 1rem;
	max-width: 48rem;
	color: var(--gray-700);
	line-height: 1.65;
	font-size: 1.15rem;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	color: var(--gray-600);
	font-weight: 700;
}

.post-meta i {
	color: var(--primary-blue);
	margin-right: 0.4rem;
}

.post-featured img {
	width: 100%;
	height: auto;
	border-radius: 22px;
	box-shadow: var(--soft-shadow);
	display: block;
}

.toc {
	max-width: 48rem;
	margin: 0 auto;
	background: rgba(37, 99, 235, 0.06);
	border: 1px solid rgba(74, 144, 226, 0.16);
	border-radius: 20px;
	padding: 1.25rem 1.25rem 1rem;
	box-shadow: var(--soft-shadow);
}

.toc-title {
	font-family: var(--font-heading);
	color: var(--primary-blue);
	font-weight: 900;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.toc-list {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.4rem;
}

.toc-list a {
	color: var(--gray-800);
	font-weight: 700;
	text-decoration: none;
}

.toc-list a:hover {
	color: var(--primary-blue);
	text-decoration: underline;
}

.post-article {
	padding: 1rem 0 3rem;
}

.prose {
	max-width: 64rem;
	margin: 0 auto;
	color: var(--gray-800);
	line-height: 1.75;
	font-size: 1.05rem;
}

.prose p {
	margin: 0 0 1.1rem;
}

.prose h2 {
	margin: 2.1rem 0 0.8rem;
	color: var(--primary-blue);
	font-family: var(--font-heading);
	font-weight: 900;
	font-size: 1.7rem;
	line-height: 1.25;
}

.prose h3 {
	margin: 1.35rem 0 0.6rem;
	color: var(--gray-900);
	font-weight: 900;
	font-size: 1.2rem;
}

.prose ul {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
	display: grid;
	gap: 0.4rem;
}

.prose a {
	color: var(--primary-blue);
	font-weight: 800;
	text-decoration: none;
}

.prose a:hover {
	text-decoration: underline;
}

.inline-cta {
	margin: 1.75rem 0 2rem;
	border-radius: 22px;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(217, 119, 6, 0.08));
	border: 1px solid rgba(74, 144, 226, 0.18);
	box-shadow: var(--soft-shadow);
}

.inline-cta h3 {
	margin: 0 0 0.5rem;
	color: var(--primary-blue);
	font-family: var(--font-heading);
	font-weight: 900;
}

.inline-cta p {
	margin: 0 0 1rem;
	color: var(--gray-700);
}

.inline-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

@media (max-width: 720px) {
	.breadcrumbs {
		justify-content: flex-start;
	}

	.post-header {
		text-align: left;
	}

	.post-kicker {
		justify-content: flex-start;
	}

	.post-meta {
		justify-content: flex-start;
	}
}

.contact-split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.5rem;
	align-items: start;
}

.contact-page {
	overflow-x: hidden;
}

.contact-split > * {
	min-width: 0;
}

.contact-form-card {
	background: white;
	border-radius: 22px;
	border: 1px solid rgba(74, 144, 226, 0.16);
	box-shadow: var(--soft-shadow);
	padding: 1rem;
	overflow: hidden;
}

.contact-form-card .map-container {
	margin-bottom: 0;
}

.contact-form-card .map-placeholder {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	background: rgba(37, 99, 235, 0.06);
	box-shadow: none;
	border-radius: 18px;
	overflow: hidden;
}

.contact-form-card iframe {
	display: block;
	width: 100%;
	min-height: 780px;
	border: 0;
	max-width: 100%;
}

.contact-card-list {
	display: grid;
	gap: 1rem;
}

.service-card.contact-card {
	text-align: left;
	padding: 1.5rem;
}

.service-card.contact-card .service-icon {
	font-size: 2.6rem;
	margin-bottom: 0.75rem;
}

.service-card.contact-card .service-description {
	margin-bottom: 1rem;
}

.service-card.contact-card .service-button {
	display: inline-flex;
	width: 100%;
	justify-content: center;
	text-decoration: none;
}

@media (max-width: 980px) {
	.contact-split {
		grid-template-columns: 1fr;
	}

	.contact-form-card iframe {
		min-height: 760px;
	}
	.mobile-11px {
		font-size: 11px;
	}
}

@media (max-width: 640px) {
	.contact-page .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.contact-form-card {
		border-radius: 18px;
		padding: 0.75rem;
	}

	.contact-form-card iframe {
		min-height: 680px;
	}
}
