/**
 * GoldLine — portfolio case page: 3 design variants + shared fixes
 * body.gl-case-v1 | gl-case-v2 | gl-case-v3
 */

/* ── Shared base ── */
body.detail-theme.gl-case-page {
	--gl-case-radius-lg: 20px;
	--gl-case-radius-md: 16px;
	--gl-case-radius-sm: 12px;
	--gl-case-gold: #615328;
	--gl-case-gold-soft: #bdad7b;
	--gl-case-cream: #f4f0e9;
	--gl-case-cream-light: #fbf9f6;
	--gl-case-panel-bg: linear-gradient(145deg, #4a4338 0%, #3d3830 48%, #353028 100%);
	--gl-case-text-dark: #1a1814;
	background: var(--gl-case-cream);
}

body.gl-case-page .detail-section .detail-right .detail-box + .detail-box {
	border-top: none !important;
}

body.gl-case-page .detail-section .detail-right .detail-box.gl-case-section + .detail-box.gl-case-section {
	margin-top: clamp(12px, 1.5vw, 18px) !important;
	padding-top: clamp(14px, 1.75vw, 22px) !important;
}

body.gl-case-page .gl-lead-form-card--sidebar {
	overflow: visible;
}

body.gl-case-page .gl-lead-form-card--sidebar .form-label {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px;
}

body.gl-case-page .detail-section .detail-sidebar .sidebar-box {
	background: transparent;
	border: none;
	padding: 0;
}

body.detail-theme.gl-case-page .detail-section {
	padding-top: 0 !important;
}

body.gl-case-page.goldline-subpage .detail-section {
	padding-top: clamp(4px, 0.6vw, 8px) !important;
}

body.gl-case-page .detail-section.section-b-space {
	padding-bottom: clamp(10px, 1.5vw, 16px) !important;
}

body.gl-case-page .detail-section .detail-right .detail-box + .detail-box:not(.gl-case-section) {
	margin-top: clamp(10px, 1.2vw, 16px) !important;
	padding-top: clamp(10px, 1.2vw, 16px) !important;
}

/* Hero strip */
.gl-case-hero {
	padding: clamp(16px, 2.2vw, 28px) 0 clamp(8px, 1.2vw, 12px);
}

.gl-case-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.gl-case-hero__eyebrow i {
	font-size: 11px;
}

.gl-case-hero__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}

.gl-case-hero__lead {
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.6;
	max-width: 62ch;
	margin: 0;
}

/* Hero — two columns aligned with Bootstrap col-lg-8 / col-lg-4 */
.gl-case-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
	gap: 24px;
	align-items: start;
}

.gl-case-hero__main {
	min-width: 0;
}

.gl-case-hero__panel {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	padding: clamp(16px, 2vw, 20px);
	border-radius: var(--gl-case-radius-md);
	background:
		radial-gradient(ellipse 80% 70% at 100% 0%, rgba(189, 173, 123, 0.24) 0%, transparent 55%),
		var(--gl-case-panel-bg);
	border: 1px solid rgba(189, 173, 123, 0.32);
	box-shadow: 0 16px 40px rgba(53, 48, 40, 0.18);
	color: #fff;
}

.gl-case-hero__panel-top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(189, 173, 123, 0.2);
}

.gl-case-hero__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	border: 1px solid rgba(189, 173, 123, 0.28);
	background: rgba(255, 255, 255, 0.04);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	max-width: 100%;
}

.gl-case-hero__phone:hover {
	background: rgba(189, 173, 123, 0.16);
	border-color: rgba(189, 173, 123, 0.45);
	color: #f5ebd4;
}

.gl-case-hero__phone i {
	color: var(--gl-case-gold-soft);
	font-size: 15px;
}

.gl-case-hero__panel-title {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 6px;
	color: #fff;
}

.gl-case-hero__panel-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

@media (min-width: 992px) {
	.gl-case-hero {
		padding: clamp(12px, 1.6vw, 18px) 0 clamp(2px, 0.4vw, 6px);
	}

	.gl-case-hero__grid {
		display: flex;
		flex-wrap: wrap;
		margin-right: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
		margin-left: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
		gap: 0;
	}

	.gl-case-hero__main,
	.gl-case-hero__panel {
		flex: 0 0 auto;
		padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
		padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
	}

	.gl-case-hero__main {
		width: 66.66666667%;
	}

	.gl-case-hero__panel {
		width: 33.33333333%;
	}

	.gl-case-hero__title {
		margin-bottom: 8px;
	}

	.gl-case-hero__eyebrow {
		margin-bottom: 8px;
	}

	.gl-case-hero__lead {
		line-height: 1.55;
	}
}

@media (max-width: 991px) {
	.gl-case-hero {
		padding-top: clamp(20px, 4vw, 32px);
	}

	.gl-case-hero__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gl-case-hero__panel {
		padding: 20px;
	}
}

@media (max-width: 575px) {
	.gl-case-hero__phone {
		justify-content: center;
		width: 100%;
	}

	body.gl-case-page .gl-case-faq .accordion-button {
		font-size: 14px;
		padding: 16px 52px 16px 16px;
	}

	body.gl-case-page .overview-list li .overview-info h6 {
		font-size: 14px;
	}
}

/* Slider base (раніше з cleaner.css) */
.ratio2_3 .bg-size::before {
	padding-top: 60%;
	content: "";
	display: block;
}

.bg-size {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
}

body.gl-case-page .detail-simple-slider .swiper-button-next::after,
body.gl-case-page .detail-simple-slider .swiper-button-prev::after {
	display: none;
}

/* Slider — rounded like homepage */
body.gl-case-page .detail-section .detail-image {
	margin-bottom: clamp(10px, 1.5vw, 16px);
	border-radius: var(--gl-case-radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(26, 24, 20, 0.12);
}

body.gl-case-page .detail-simple-slider:not(.thumbs) {
	border-radius: var(--gl-case-radius-lg);
	overflow: hidden;
}

body.gl-case-page .detail-simple-slider:not(.thumbs) .swiper-slide,
body.gl-case-page .detail-simple-slider:not(.thumbs) .bg-size {
	border-radius: var(--gl-case-radius-lg);
	overflow: hidden;
}

body.gl-case-page .detail-simple-slider.thumbs {
	margin-top: 14px;
}

body.gl-case-page .detail-simple-slider.thumbs .swiper-slide {
	border-radius: var(--gl-case-radius-sm);
	overflow: hidden;
	opacity: 0.55;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

body.gl-case-page .detail-simple-slider.thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

body.gl-case-page .detail-simple-slider .swiper-button-next,
body.gl-case-page .detail-simple-slider .swiper-button-prev {
	width: 44px;
	height: 44px;
	background: rgba(251, 249, 246, 0.92);
	color: var(--gl-case-gold);
	border: 1px solid rgba(97, 83, 40, 0.15);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body.gl-case-page .detail-simple-slider .swiper-button-next i,
body.gl-case-page .detail-simple-slider .swiper-button-prev i {
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
}

/* Sidebar — sticky, vertically centered while scrolling */
body.gl-case-page .detail-section .detail-sidebar {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	align-self: stretch;
	max-height: none;
	overflow: visible;
	padding: 0 !important;
	background: transparent !important;
}

body.gl-case-page .detail-section .detail-sidebar .sidebar-box {
	margin-top: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
}

body.gl-case-page .gl-case-sidebar-sticky {
	width: 100%;
}

@media (min-width: 992px) {
	body.gl-case-page .detail-section .custom-row {
		align-items: stretch;
	}

	body.gl-case-page .detail-section .col-lg-4 {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	body.gl-case-page .detail-section .detail-sidebar {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	body.gl-case-page .detail-section .detail-sidebar .sidebar-box {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		min-height: 100%;
	}

	body.gl-case-page .gl-case-sidebar-sticky {
		position: sticky !important;
		top: var(--gl-case-sticky-top, 96px);
		align-self: flex-start;
		width: 100%;
		transition: top 0.2s ease;
		z-index: 8;
	}
}

@media (max-width: 991px) {
	body.gl-case-page .detail-section .container {
		padding-left: clamp(16px, 4vw, 24px);
		padding-right: clamp(16px, 4vw, 24px);
	}

	body.gl-case-page .detail-section .custom-row {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		row-gap: clamp(14px, 2.2vw, 22px);
		margin-left: 0;
		margin-right: 0;
	}

	body.gl-case-page .detail-section .col-lg-8,
	body.gl-case-page .detail-section .col-lg-4 {
		display: contents;
	}

	body.gl-case-page .detail-section .detail-image,
	body.gl-case-page .detail-section .detail-sidebar,
	body.gl-case-page .detail-section .detail-right {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	body.gl-case-page .detail-section .detail-image {
		grid-row: 1;
		margin-bottom: 0;
	}

	body.gl-case-page .detail-section .detail-sidebar {
		grid-row: 2;
		position: relative !important;
		margin: 0;
		padding: 0;
	}

	body.gl-case-page .detail-section .detail-right {
		grid-row: 3;
	}

	body.gl-case-page .gl-case-sidebar-sticky {
		position: static !important;
		top: auto !important;
	}

	body.gl-case-page .gl-case-section {
		padding-left: clamp(16px, 4vw, 22px) !important;
		padding-right: clamp(16px, 4vw, 22px) !important;
	}

	body.gl-case-page .detail-simple-slider.thumbs .swiper-slide {
		opacity: 1;
	}

	body.gl-case-page .detail-simple-slider .swiper-button-next,
	body.gl-case-page .detail-simple-slider .swiper-button-prev {
		width: 40px;
		height: 40px;
	}
}

body.gl-case-page .gl-case-form-card {
	overflow: visible;
}

body.gl-case-page .gl-case-form-card .form-group {
	margin-bottom: 16px;
}

body.gl-case-page .gl-case-form-card .form-control {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 15px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(189, 173, 123, 0.28);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.gl-case-page .gl-case-form-card .form-control:focus {
	border-color: rgba(189, 173, 123, 0.55);
	box-shadow: 0 0 0 3px rgba(189, 173, 123, 0.12);
	background: rgba(255, 255, 255, 0.14);
	outline: none;
}

body.gl-case-page .gl-case-form-card .form-control::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

body.gl-case-page .gl-case-form-card textarea.form-control {
	min-height: 96px;
	resize: vertical;
}

body.gl-case-page .gl-case-form-card .cta-lead-form-card__head p {
	color: #fff;
}

body.gl-case-page .gl-case-form-card .cta-lead-form-card__head h3,
body.gl-case-page .gl-case-form-card .cta-lead-form-card__head .detail-title {
	color: #fff;
}

body.gl-case-page .gl-case-form-card .form-control::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

body.gl-case-page .gl-case-form-card button[type="submit"].btn-solid {
	width: 100%;
	min-height: 52px;
	border-radius: 14px;
	padding: 16px 22px;
	background: linear-gradient(90deg, var(--gl-case-gold-soft) 0%, var(--gl-case-gold) 100%);
	border: 0;
	color: #1a1814;
	font-weight: 700;
	font-size: 15px;
	text-transform: none;
}

body.gl-case-page .gl-case-form-card button[type="submit"].btn-solid:hover {
	filter: brightness(1.06);
}

body.gl-case-page .gl-case-sidebar-intro {
	margin-bottom: 12px;
}

body.gl-case-page .gl-case-sidebar-intro .detail-title {
	margin-bottom: 10px;
}

body.gl-case-page .gl-case-sidebar-intro .profile-name h6 {
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
	margin: 0;
	color: var(--gl-case-text-dark);
}

body.gl-case-page .gl-case-sidebar-intro .location-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--gl-case-text-dark);
}

body.gl-case-page .gl-case-sidebar-intro .location-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
}

body.gl-case-page .gl-case-sidebar-intro .location-item i {
	color: var(--gl-case-gold-soft);
}

body.gl-case-page .gl-case-sidebar-intro .detail-title {
	color: var(--gl-case-text-dark);
}

/* Content sections — balanced spacing between cards */
body.gl-case-page .gl-case-section {
	margin-top: clamp(12px, 1.5vw, 18px) !important;
	padding: clamp(16px, 2vw, 26px) !important;
	border-radius: var(--gl-case-radius-md);
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.gl-case-page .detail-right .detail-box.gl-case-section:first-child {
	margin-top: clamp(10px, 1.2vw, 14px) !important;
}

body.gl-case-page .gl-case-section .detail-title {
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
	font-weight: 700;
	margin-bottom: 14px;
	margin-top: 0;
	line-height: 1.25;
}

body.gl-case-page .gl-case-description .detail-title {
	margin-top: 0;
}

body.gl-case-page .gl-case-faq .detail-title {
	margin-top: 0;
	margin-bottom: 14px;
}

body.gl-case-page .gl-case-section p {
	line-height: 1.75;
	margin-bottom: 10px;
	color: var(--gl-case-text-dark);
}

body.gl-case-page .gl-case-checks {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	gap: 8px;
}

body.gl-case-page .gl-case-checks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.55;
	font-size: 15px;
	color: var(--gl-case-text-dark);
}

body.gl-case-page .gl-case-checks li::before {
	content: "";
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gl-case-gold-soft), var(--gl-case-gold));
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	mask-size: 14px;
	-webkit-mask-size: 14px;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
}

body.gl-case-page .gl-case-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

@media (max-width: 991px) {
	body.gl-case-page .gl-case-features-grid {
		grid-template-columns: 1fr;
	}
}

body.gl-case-page .gl-case-feature-card {
	padding: 16px;
	border-radius: var(--gl-case-radius-sm);
	height: 100%;
}

body.gl-case-page .gl-case-feature-card h5 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 0;
}

body.gl-case-page .gl-case-feature-card .feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

body.gl-case-page .gl-case-feature-card .feature-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	line-height: 1.55;
	font-size: 14px;
	color: var(--gl-case-text-dark);
}

body.gl-case-page .gl-case-feature-card .feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gl-case-gold-soft);
}

/* Overview grid */
body.gl-case-page .overview-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 767px) {
	body.gl-case-page .overview-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	body.gl-case-page .overview-list {
		grid-template-columns: 1fr;
	}
}

body.gl-case-page .overview-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border-radius: var(--gl-case-radius-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.gl-case-page .overview-list li .overview-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

body.gl-case-page .overview-list li .overview-icon svg {
	width: 20px;
	height: 20px;
}

body.gl-case-page .overview-list li .overview-info span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
	font-weight: 700;
}

body.gl-case-page .overview-list li .overview-info h6 {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

/* FAQ — smooth Bootstrap collapse, no flicker */
body.gl-case-page .gl-case-faq .accordion {
	background: transparent;
	border: none;
	box-shadow: none;
	overflow: visible;
}

body.gl-case-page .gl-case-faq .accordion-item {
	animation: none;
	border-radius: var(--gl-case-radius-sm) !important;
	overflow: hidden;
	margin-bottom: 8px;
}

body.gl-case-page .gl-case-faq .accordion-item:last-child {
	margin-bottom: 0;
}

body.gl-case-page .gl-case-faq .accordion-button {
	font-size: 15px;
	font-weight: 600;
	padding: 14px 52px 14px 16px;
	box-shadow: none !important;
	transition: color 0.2s ease, background 0.2s ease;
}

body.gl-case-page .gl-case-faq .accordion-button::after,
body.gl-case-page .gl-case-faq .accordion-button.collapsed::after,
body.gl-case-page .gl-case-faq .accordion-button:not(.collapsed)::after {
	content: "" !important;
	font-family: inherit !important;
	-webkit-text-fill-color: initial;
	background-clip: border-box;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23615328' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
	background-color: rgba(97, 83, 40, 0.1) !important;
	background-size: 14px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	color: transparent !important;
	width: 32px !important;
	height: 32px !important;
	min-width: 32px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-left: auto;
	transition: transform 0.25s ease, background-color 0.2s ease;
}

body.gl-case-page .gl-case-faq .accordion-button.collapsed::after {
	transform: rotate(0deg);
}

body.gl-case-page .gl-case-faq .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	background-color: rgba(189, 173, 123, 0.2) !important;
}

body.gl-case-page .gl-case-faq .accordion-button:not(.collapsed) {
	background-color: transparent !important;
}

body.gl-case-page .gl-case-faq .accordion-button:not(.collapsed):hover {
	background-color: transparent !important;
}

body.gl-case-page .gl-case-faq .accordion-body {
	padding: 0 16px 14px;
	line-height: 1.65;
	color: var(--gl-case-text-dark);
}

/* Variant switcher — hidden (V1 only) */
.gl-case-variant-picker {
	display: none !important;
}

.gl-case-variant-picker__label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.55);
	padding: 0 6px 0 4px;
	white-space: nowrap;
}

.gl-case-variant-picker__btn {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	min-height: 44px;
}

.gl-case-variant-picker__btn:hover {
	background: rgba(189, 173, 123, 0.15);
	color: #fff;
}

.gl-case-variant-picker__btn.is-active {
	background: linear-gradient(90deg, #d4c9a8, #bdad7b);
	color: #1a1814;
	border-color: transparent;
}

@media (max-width: 575px) {
	.gl-case-variant-picker {
		left: 12px;
		right: 12px;
		transform: none;
		justify-content: center;
		flex-wrap: wrap;
		bottom: max(80px, calc(16px + env(safe-area-inset-bottom)));
	}

	.gl-case-variant-picker__label {
		width: 100%;
		text-align: center;
		padding: 4px 0 0;
	}
}

/* ══════════════════════════════════════
   VARIANT 1 — ATELIER (warm, like index)
   ══════════════════════════════════════ */
body.gl-case-v1 {
	background: var(--gl-case-cream);
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .gl-case-hero__eyebrow {
	color: var(--gl-case-gold);
}

body.gl-case-v1 .gl-case-hero__title {
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .gl-case-hero__lead {
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .gl-case-section {
	background: var(--gl-case-cream-light);
	border: 1px solid rgba(97, 83, 40, 0.1);
	box-shadow: 0 8px 32px rgba(97, 83, 40, 0.06);
}

body.gl-case-v1 .gl-case-section .detail-title {
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .overview-list li {
	background: #fff;
	border: 1px solid rgba(97, 83, 40, 0.08);
}

body.gl-case-v1 .overview-list li .overview-icon {
	background: linear-gradient(145deg, rgba(189, 173, 123, 0.22), rgba(97, 83, 40, 0.12));
	border: 1px solid rgba(97, 83, 40, 0.18);
}

body.gl-case-v1 .overview-list li .overview-icon svg {
	fill: var(--gl-case-gold);
}

body.gl-case-v1 .gl-case-feature-card {
	background: #fff;
	border: 1px solid rgba(97, 83, 40, 0.1);
	box-shadow: 0 4px 18px rgba(97, 83, 40, 0.05);
}

body.gl-case-v1 .gl-case-feature-card h5 {
	color: var(--gl-case-gold);
}

body.gl-case-v1 .gl-case-faq .accordion-item {
	background: #fff !important;
	border: 1px solid rgba(97, 83, 40, 0.08) !important;
}

body.gl-case-v1 .gl-case-faq .accordion-button {
	background: #fff !important;
	color: #1a1814;
}

body.gl-case-v1 .gl-case-faq .accordion-button:not(.collapsed) {
	color: var(--gl-case-gold);
}

body.gl-case-v1 .overview-list li .overview-info span {
	color: #4a3f1f !important;
	opacity: 1 !important;
	font-weight: 700 !important;
}

body.gl-case-v1 .overview-list li .overview-info h6 {
	color: #1a1814 !important;
	font-weight: 700 !important;
}

body.gl-case-page .detail-section .detail-right .detail-box .overview-list li span {
	color: #4a3f1f !important;
	opacity: 1 !important;
	font-weight: 700 !important;
}

body.gl-case-page .detail-section .detail-right .detail-box .overview-list li h6 {
	color: #1a1814 !important;
	font-weight: 700 !important;
}

body.gl-case-v1 .gl-case-faq .accordion-button:not(.collapsed) {
	color: var(--gl-case-gold);
}

body.gl-case-v1 .gl-case-sidebar-intro .profile-name h6 {
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .gl-case-sidebar-intro .location-item {
	color: var(--gl-case-text-dark);
}

body.gl-case-v1 .gl-case-sidebar-intro {
	background: var(--gl-case-cream-light);
	border: 1px solid rgba(97, 83, 40, 0.1);
	border-radius: var(--gl-case-radius-md);
	padding: 22px;
}

body.gl-case-v1 .gl-case-sidebar-intro .detail-title {
	color: var(--gl-case-text-dark);
}

@media (min-width: 992px) {
	body.gl-case-page .detail-section .detail-sidebar {
		top: auto !important;
		inset: auto !important;
		height: 100%;
	}
}

/* Footer — як на index: на всю ширину, без обрізання */
body.gl-case-page .detail-section {
	overflow: visible;
}

body.gl-case-page .main-footer.dark-section {
	width: 100%;
	max-width: none;
	margin-top: clamp(14px, 2vw, 22px);
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
	position: relative;
	left: auto;
	right: auto;
}

body.gl-case-page .main-footer .footer-logo::after,
body.gl-case-page .main-footer .footer-logo:after {
	display: none !important;
	content: none !important;
}

@media (min-width: 992px) {
	body.gl-case-page .detail-section .col-lg-4 {
		padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
		padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
	}

	body.gl-case-page .gl-lead-form-card--sidebar,
	body.gl-case-page .gl-case-form-card {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* ══════════════════════════════════════
   VARIANT 2 — NOIR (editorial dark/light)
   ══════════════════════════════════════ */
body.gl-case-v2 {
	background: #12110e;
	color: rgba(255, 255, 255, 0.82);
}

body.gl-case-v2 .gl-case-hero {
	background: linear-gradient(180deg, #1a1814 0%, #12110e 100%);
	border-bottom: 1px solid rgba(189, 173, 123, 0.2);
}

body.gl-case-v2 .gl-case-hero__eyebrow {
	color: var(--gl-case-gold-soft);
}

body.gl-case-v2 .gl-case-hero__title {
	color: #fff;
}

body.gl-case-v2 .gl-case-hero__lead {
	color: rgba(255, 255, 255, 0.65);
}

body.gl-case-v2 .detail-section .detail-image {
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.gl-case-v2 .gl-case-section:nth-child(odd) {
	background: #1e1c18;
	border: 1px solid rgba(189, 173, 123, 0.15);
}

body.gl-case-v2 .gl-case-section:nth-child(even) {
	background: #f4f0e9;
	color: #3d3b38;
	border: 1px solid rgba(97, 83, 40, 0.08);
}

body.gl-case-v2 .gl-case-section:nth-child(even) .detail-title {
	color: #1a1814;
}

body.gl-case-v2 .gl-case-section .detail-title {
	color: #fff;
}

body.gl-case-v2 .overview-list li {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(189, 173, 123, 0.12);
}

body.gl-case-v2 .gl-case-overview .overview-list li {
	background: rgba(0, 0, 0, 0.25);
}

body.gl-case-v2 .gl-case-section:nth-child(even) .overview-list li {
	background: #fff;
	border-color: rgba(97, 83, 40, 0.08);
}

body.gl-case-v2 .overview-list li .overview-icon {
	background: rgba(189, 173, 123, 0.12);
	border: 1px solid rgba(189, 173, 123, 0.25);
}

body.gl-case-v2 .overview-list li .overview-icon svg {
	fill: var(--gl-case-gold-soft);
}

body.gl-case-v2 .gl-case-feature-card {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(189, 173, 123, 0.12);
}

body.gl-case-v2 .gl-case-section:nth-child(even) .gl-case-feature-card {
	background: #fff;
	border-color: rgba(97, 83, 40, 0.08);
}

body.gl-case-v2 .gl-case-feature-card h5 {
	color: var(--gl-case-gold-soft);
}

body.gl-case-v2 .gl-case-section:nth-child(even) .gl-case-feature-card h5 {
	color: var(--gl-case-gold);
}

body.gl-case-v2 .gl-case-faq .accordion-item {
	background: #1e1c18 !important;
	border: 1px solid rgba(189, 173, 123, 0.12) !important;
}

body.gl-case-v2 .gl-case-faq .accordion-button {
	background: #1e1c18 !important;
	color: #fff;
}

body.gl-case-v2 .gl-case-faq .accordion-button:not(.collapsed) {
	color: var(--gl-case-gold-soft);
}

body.gl-case-v2 .gl-case-faq .accordion-body {
	background: #1e1c18;
	color: rgba(255, 255, 255, 0.75);
}

body.gl-case-v2 .gl-case-sidebar-intro {
	background: #1e1c18;
	border: 1px solid rgba(189, 173, 123, 0.2);
	border-radius: var(--gl-case-radius-md);
	padding: 22px;
	color: #fff;
}

body.gl-case-v2 .gl-case-sidebar-intro .detail-title {
	color: #fff;
}

/* ══════════════════════════════════════
   VARIANT 3 — GALLERY (minimal light)
   ══════════════════════════════════════ */
body.gl-case-v3 {
	background: #fff;
	color: #4a4845;
}

body.gl-case-v3 .gl-case-hero {
	border-bottom: 1px solid rgba(97, 83, 40, 0.12);
}

body.gl-case-v3 .gl-case-hero__eyebrow {
	color: var(--gl-case-gold);
}

body.gl-case-v3 .gl-case-hero__title {
	color: #1a1814;
	font-weight: 300;
	letter-spacing: -0.03em;
}

body.gl-case-v3 .gl-case-hero__lead {
	color: #62605d;
	font-weight: 400;
}

body.gl-case-v3 .detail-section .detail-image {
	box-shadow: none;
	border: 1px solid rgba(97, 83, 40, 0.08);
}

body.gl-case-v3 .gl-case-section {
	background: transparent;
	border: none;
	border-top: 1px solid rgba(97, 83, 40, 0.12);
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	box-shadow: none;
}

body.gl-case-v3 .gl-case-section .detail-title {
	color: #1a1814;
	font-weight: 300;
	letter-spacing: -0.02em;
}

body.gl-case-v3 .overview-list {
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

@media (max-width: 991px) {
	body.gl-case-v3 .overview-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

body.gl-case-v3 .overview-list li {
	background: var(--gl-case-cream);
	border: none;
	padding: 16px 12px;
	flex-direction: column;
	text-align: center;
	gap: 8px;
}

body.gl-case-v3 .overview-list li .overview-icon {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid rgba(97, 83, 40, 0.1);
}

body.gl-case-v3 .overview-list li .overview-icon svg {
	fill: var(--gl-case-gold);
}

body.gl-case-v3 .gl-case-feature-card {
	background: var(--gl-case-cream);
	border: none;
	border-left: 3px solid var(--gl-case-gold-soft);
	border-radius: 0;
}

body.gl-case-v3 .gl-case-feature-card h5 {
	color: #1a1814;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}

body.gl-case-v3 .gl-case-faq .accordion-item {
	background: var(--gl-case-cream) !important;
	border: none !important;
	border-bottom: 1px solid rgba(97, 83, 40, 0.1) !important;
	border-radius: 0 !important;
}

body.gl-case-v3 .gl-case-faq .accordion-button {
	background: transparent !important;
	color: #1a1814;
	font-weight: 500;
	padding-left: 0;
	padding-right: 0;
}

body.gl-case-v3 .gl-case-faq .accordion-button:not(.collapsed) {
	color: var(--gl-case-gold);
}

body.gl-case-v3 .gl-case-faq .accordion-body {
	background: transparent;
	padding-left: 0;
	padding-right: 0;
}

body.gl-case-v3 .gl-case-sidebar-intro {
	background: var(--gl-case-cream);
	border-radius: 0;
	border-left: 3px solid var(--gl-case-gold);
	padding: 22px 22px 22px 26px;
}

body.gl-case-v3 .gl-lead-form-card--sidebar {
	border-radius: 0;
	background: #1a1814;
}

@media (prefers-reduced-motion: reduce) {
	body.gl-case-page .overview-list li,
	body.gl-case-page .detail-simple-slider.thumbs .swiper-slide {
		transition: none;
	}
}
