/**
 * O'Learys Electrical Group — main stylesheet
 */

:root {
	--oleg-orange: #f7941d;
	--oleg-orange-dark: #e07800;
	--oleg-black: #111;
	--oleg-text: #2a2a2a;
	--oleg-muted: #5c5c5c;
	--oleg-bg: #fafafa;
	--oleg-white: #fff;
	--oleg-border: #e8e8e8;
	--oleg-radius: 10px;
	--oleg-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	--oleg-max: 1180px;
	--font-head: "Poppins", system-ui, sans-serif;
	--font-body: "Poppins", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 6.5rem;
}

#services,
#guarantee,
#gallery,
#reviews,
#contact {
	scroll-margin-top: 6.5rem;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--oleg-text);
	background: var(--oleg-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--oleg-orange-dark);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	text-decoration: underline;
}

.oleg-skip {
	position: absolute;
	left: -9999px;
	z-index: 10000;
	padding: 0.75rem 1rem;
	background: var(--oleg-black);
	color: var(--oleg-white);
	font-weight: 600;
}

.oleg-skip:focus {
	left: 1rem;
	top: 1rem;
}

/* Top bar */
.oleg-topbar {
	background: var(--oleg-black);
	color: var(--oleg-white);
	font-size: 0.9rem;
}

.oleg-topbar-inner {
	max-width: var(--oleg-max);
	margin: 0 auto;
	padding: 0.5rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.oleg-topbar a {
	color: var(--oleg-white);
	text-decoration: none;
	font-weight: 500;
}

.oleg-topbar-contact {
	gap: 1.5rem !important;
}

.oleg-topbar a:hover {
	text-decoration: underline;
	color: var(--oleg-orange);
}

.oleg-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.oleg-badge-row span {
	opacity: 0.95;
}

/* Header */
.oleg-header {
	background: var(--oleg-white);
	border-bottom: 1px solid var(--oleg-border);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.oleg-header-inner {
	max-width: var(--oleg-max);
	margin: 0 auto;
	padding: 0.75rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.oleg-logo img {
	max-height: 86px;
	width: auto;
}

.oleg-nav {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.oleg-nav__link {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--oleg-black);
	padding: 0.5rem 0.7rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.oleg-nav__link:hover,
.oleg-nav__link:focus-visible {
	background: rgba(247, 148, 29, 0.12);
	color: var(--oleg-orange-dark);
	text-decoration: none;
	outline: none;
}

.oleg-btn--sm {
	padding: 0.55rem 1.15rem;
	font-size: 0.78rem;
	border-radius: 8px;
	box-shadow: 0 4px 14px rgba(247, 148, 29, 0.45);
}

.oleg-nav__cta.oleg-btn--primary {
	margin-left: 0.25rem;
}

/* Dropdowns */
.oleg-nav__item {
	position: relative;
}

.oleg-dropdown-icon {
	margin-left: 4px;
	opacity: 0.6;
	transition: transform 0.2s;
}

.oleg-nav__item.is-open .oleg-dropdown-icon {
	transform: rotate(180deg);
}

.oleg-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--oleg-white);
	min-width: 240px;
	padding: 0.5rem;
	border-radius: var(--oleg-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--oleg-border);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 100;
	display: block;
}

.oleg-nav__item.is-open .oleg-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.oleg-dropdown__link {
	display: block;
	padding: 0.75rem 1.25rem;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--oleg-black);
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.oleg-dropdown__link:hover {
	background: rgba(247, 148, 29, 0.08);
	color: var(--oleg-orange-dark);
	text-decoration: none;
}

/* Mobile Nav Toggle */
.oleg-nav-toggle {
	display: none !important;
	background: transparent;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 1100;
}

.oleg-nav-toggle__icon {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--oleg-black);
	position: relative;
	transition: background 0.2s;
}

.oleg-nav-toggle__icon::before,
.oleg-nav-toggle__icon::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--oleg-black);
	transition: transform 0.2s, top 0.2s;
}

.oleg-nav-toggle__icon::before {
	top: -7px;
}

.oleg-nav-toggle__icon::after {
	top: 7px;
}

.oleg-nav-toggle.is-active .oleg-nav-toggle__icon {
	background: transparent;
}

.oleg-nav-toggle.is-active .oleg-nav-toggle__icon::before {
	top: 0;
	transform: rotate(45deg);
}

.oleg-nav-toggle.is-active .oleg-nav-toggle__icon::after {
	top: 0;
	transform: rotate(-45deg);
}

@media (max-width: 900px) {
	.oleg-nav-toggle {
		display: block !important;
	}

	.oleg-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--oleg-white);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 5rem 1.5rem 2rem;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
		transition: right 0.3s ease;
		z-index: 1050;
		gap: 0.5rem;
		flex-wrap: nowrap;
	}

	.oleg-nav.is-active {
		right: 0;
	}

	.oleg-nav__link {
		width: 100%;
		font-size: 1rem;
		padding: 0.75rem 1rem;
	}

	.oleg-nav__item {
		width: 100%;
	}

	.oleg-dropdown {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border: none;
		padding: 0 0 0 1rem;
		min-width: 0;
		display: none;
	}

	.oleg-nav__item.is-open .oleg-dropdown {
		display: block;
	}

	.oleg-nav__item.is-open .oleg-dropdown-icon {
		transform: rotate(180deg);
	}

	.oleg-nav__cta.oleg-btn--primary {
		margin: 1rem 0 0;
		width: 100%;
	}
}

.oleg-nav__cta:hover,
.oleg-nav__cta:focus-visible {
	box-shadow: 0 6px 20px rgba(247, 148, 29, 0.55);
	transform: translateY(-1px);
	text-decoration: none;
}

.oleg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.85rem 1.5rem;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}

.oleg-btn:focus-visible {
	outline: 2px solid var(--oleg-orange);
	outline-offset: 2px;
}

.oleg-btn--primary {
	background: var(--oleg-orange);
	color: var(--oleg-black);
}

.oleg-btn--primary:hover {
	background: var(--oleg-orange-dark);
	color: var(--oleg-white);
	text-decoration: none;
}

.oleg-btn--outline {
	background: transparent;
	color: var(--oleg-white);
	border: 2px solid var(--oleg-white);
}

.oleg-btn--outline:hover {
	background: var(--oleg-white);
	color: var(--oleg-black);
	text-decoration: none;
}

.oleg-btn--dark {
	background: var(--oleg-black);
	color: var(--oleg-white);
}

.oleg-btn--dark:hover {
	background: #333;
	text-decoration: none;
}

/* Scroll-triggered & hero animations */
@keyframes oleg-fade-up {
	from {
		opacity: 0;
		transform: translateY(1.5rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes oleg-hero-ken {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.06);
	}
}

.oleg-reveal {
	opacity: 0;
	transform: translateY(1.35rem);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.oleg-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.oleg-guarantee-row--4 .oleg-reveal:nth-child(1) {
	transition-delay: 0.03s;
}

.oleg-guarantee-row--4 .oleg-reveal:nth-child(2) {
	transition-delay: 0.08s;
}

.oleg-guarantee-row--4 .oleg-reveal:nth-child(3) {
	transition-delay: 0.13s;
}

.oleg-guarantee-row--4 .oleg-reveal:nth-child(4) {
	transition-delay: 0.18s;
}

.oleg-guarantee-row--3 .oleg-reveal:nth-child(1) {
	transition-delay: 0.1s;
}

.oleg-guarantee-row--3 .oleg-reveal:nth-child(2) {
	transition-delay: 0.18s;
}

.oleg-guarantee-row--3 .oleg-reveal:nth-child(3) {
	transition-delay: 0.26s;
}

.oleg-service-card.oleg-reveal:nth-child(1) {
	transition-delay: 0.05s;
}

.oleg-service-card.oleg-reveal:nth-child(2) {
	transition-delay: 0.12s;
}

.oleg-service-card.oleg-reveal:nth-child(3) {
	transition-delay: 0.19s;
}

/* Hero */
.oleg-hero {
	position: relative;
	min-height: min(78vh, 640px);
	display: flex;
	align-items: center;
	color: var(--oleg-white);
	overflow: hidden;
}

.oleg-hero__bg {
	position: absolute;
	inset: 0;
	background-size: 100% 100% !important;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
	/* Animation removed to prevent stretching sensation */
}

.oleg-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg,
			rgba(12, 8, 4, 0.88) 0%,
			rgba(35, 22, 10, 0.55) 48%,
			rgba(0, 0, 0, 0.35) 100%);
}

.oleg-hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--oleg-max);
	margin: 0 auto;
	padding: 4rem 1.25rem;
	width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	.oleg-hero-animate .oleg-hero__content>* {
		opacity: 0;
		animation: oleg-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.oleg-hero-animate .oleg-hero__content>*:nth-child(1) {
		animation-delay: 0.12s;
	}

	.oleg-hero-animate .oleg-hero__content>*:nth-child(2) {
		animation-delay: 0.26s;
	}

	.oleg-hero-animate .oleg-hero__content>*:nth-child(3) {
		animation-delay: 0.4s;
	}
}

.oleg-hero h1 {
	font-family: var(--font-head);
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: 18ch;
}

.oleg-hero__lead {
	font-size: 1.1rem;
	max-width: 42ch;
	margin: 0 0 1.75rem;
	opacity: 0.95;
}

.oleg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.oleg-hero--landing .oleg-hero__overlay {
	background: linear-gradient(135deg,
			rgba(5, 5, 5, 0.93) 0%,
			rgba(32, 22, 12, 0.78) 42%,
			rgba(247, 148, 29, 0.18) 100%);
}

.oleg-hero--landing .oleg-hero__content {
	padding-top: 5rem;
	padding-bottom: 5.25rem;
}

.oleg-hero__phone {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.15rem;
}

.oleg-hero__phone a {
	color: var(--oleg-orange);
	text-decoration: none;
}

.oleg-hero__phone a:hover {
	text-decoration: underline;
}

/* Trust strip */
.oleg-trust {
	background: var(--oleg-white);
	border-bottom: 1px solid var(--oleg-border);
}

.oleg-trust-inner {
	max-width: var(--oleg-max);
	margin: 0 auto;
	padding: 1.5rem 1.25rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.25rem;
	text-align: center;
}

.oleg-trust-item strong {
	font-family: var(--font-head);
	display: block;
	font-size: 0.95rem;
	color: var(--oleg-black);
	margin-bottom: 0.25rem;
}

.oleg-trust-item span {
	font-size: 0.88rem;
	color: var(--oleg-muted);
}

/* Section layout */
.oleg-section {
	padding: 4rem 1.25rem;
}

.oleg-section--alt {
	background: var(--oleg-white);
}

.oleg-section-inner {
	max-width: var(--oleg-max);
	margin: 0 auto;
}

.oleg-section-title {
	font-family: var(--font-head);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--oleg-black);
	text-align: center;
	margin: 0 0 0.5rem;
}

.oleg-section-sub {
	text-align: center;
	color: var(--oleg-muted);
	max-width: 62ch;
	margin: 0 auto 2.5rem;
}

/* Services grid */
.oleg-services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.oleg-service-card {
	background: var(--oleg-black);
	border-radius: var(--oleg-radius);
	overflow: hidden;
	box-shadow: var(--oleg-shadow);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.oleg-service-card__img {
	aspect-ratio: 16/9;
	object-fit: cover;
	width: 100%;
}

.oleg-service-card__body {
	padding: 1.75rem 1.35rem 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.oleg-service-card h3 {
	font-family: var(--font-head);
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: var(--oleg-white);
}

.oleg-service-card p {
	margin: 0 0 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	flex: 1;
	line-height: 1.5;
}

.oleg-service-card__actions {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: auto;
}

.oleg-service-card__actions .oleg-btn--primary {
	font-size: 0.9rem;
	padding: 0.75rem 1.5rem;
	text-transform: none;
	letter-spacing: 0;
}

.oleg-section--services {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #f7f7f7 55%, var(--oleg-bg) 100%);
}

.oleg-section--services::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: min(100%, var(--oleg-max));
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(247, 148, 29, 0.55), transparent);
	border-radius: 999px;
	pointer-events: none;
}

/* Guarantee — row of 4, then 3 centered */
.oleg-section--guarantee {
	background: linear-gradient(180deg, #f5f5f5 0%, var(--oleg-bg) 40%, #fff 100%);
}

.oleg-bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-flow: dense;
	gap: 1.5rem;
	width: 100%;
}

.oleg-bento-box {
	position: relative;
	background: var(--oleg-white);
	border-radius: 20px;
	padding: 2.25rem 2rem;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.oleg-bento-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(247, 148, 29, 0.15);
}

.bento-num {
	display: block;
	font-weight: 800;
	color: var(--oleg-orange);
	opacity: 0.12;
	position: absolute;
	top: -25px;
	right: -10px;
	line-height: 1;
	font-family: var(--font-head);
	pointer-events: none;
	font-size: 9rem;
	z-index: 0;
	user-select: none;
}

.bento-box-inner {
	position: relative;
	z-index: 1;
}

.oleg-bento-box h3 {
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--oleg-black);
	margin: 0 0 0.85rem;
	line-height: 1.35;
	position: relative;
	z-index: 2;
}

.oleg-bento-box p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--oleg-muted);
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

/* Bento Sizing Modifiers */
.oleg-bento--large {
	grid-column: span 2;
	grid-row: span 2;
	background: var(--oleg-black);
	padding: 3rem;
}

.oleg-bento--large h3 {
	font-size: 1.6rem;
	color: var(--oleg-white);
}

.oleg-bento--large p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
}

.oleg-bento--large .bento-num {
	color: var(--oleg-white);
	opacity: 0.05;
	font-size: 14rem;
	top: -30px;
	right: -20px;
}

.oleg-bento--wide {
	grid-column: span 2;
	grid-row: span 1;
}

.oleg-bento--tall {
	grid-column: span 1;
	grid-row: span 2;
}

.oleg-bento--standard {
	grid-column: span 1;
	grid-row: span 1;
}

.oleg-bento--wide-alt {
	grid-column: span 2;
	grid-row: span 1;
}

.oleg-bento--accent {
	grid-column: span 2;
	grid-row: span 1;
	background: linear-gradient(135deg, var(--oleg-orange) 0%, var(--oleg-orange-dark) 100%);
	border: none;
}

.oleg-bento--accent h3 {
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.oleg-bento--accent p {
	color: rgba(255, 255, 255, 0.95);
}

.oleg-bento--accent .bento-num {
	color: var(--oleg-black);
	opacity: 0.08;
}

/* Responsive Grid Resets */
@media (max-width: 1024px) {
	.oleg-bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.oleg-bento-box {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
	}

	.oleg-bento--large,
	.oleg-bento--wide,
	.oleg-bento--wide-alt,
	.oleg-bento--accent {
		grid-column: span 2 !important;
	}
}

@media (max-width: 650px) {
	.oleg-bento-grid {
		grid-template-columns: 1fr;
	}

	.oleg-bento-box {
		grid-column: span 1 !important;
		grid-row: span 1 !important;
		padding: 2rem 1.5rem;
	}
}

.oleg-values {
	margin-top: 2.75rem;
	padding: 1.65rem 1.5rem;
	background: linear-gradient(135deg, #1a1a1a 0%, var(--oleg-black) 100%);
	color: var(--oleg-white);
	border-radius: 14px;
	text-align: center;
	border: 1px solid rgba(247, 148, 29, 0.25);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.oleg-values strong {
	color: var(--oleg-orange);
}

/* Gallery — single-image carousel */
.oleg-gallery-showcase {
	max-width: 920px;
	margin: 0 auto;
}

.oleg-gallery-showcase.swiper {
	width: 100%;
	max-width: 1200px;
	padding-top: 20px;
	padding-bottom: 60px;
}

.oleg-gallery-showcase .swiper-slide {
	width: 800px;
	max-width: 80%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	background: #111;
}

.oleg-gallery__thumb,
.oleg-gallery__figure {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	padding: 0;
	margin: 0;
	cursor: zoom-in;
}

.oleg-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 21/9;
	display: block;
}

.oleg-swiper-nav {
	color: var(--oleg-white) !important;
	background: var(--oleg-orange);
	width: 48px !important;
	height: 48px !important;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transition: background 0.2s, transform 0.15s;
}

.oleg-swiper-nav::after {
	font-size: 1.25rem !important;
	font-weight: bold;
}

.oleg-swiper-nav:hover {
	background: var(--oleg-orange-dark);
}

.swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.3) !important;
	opacity: 1 !important;
	transition: transform 0.2s, background 0.2s;
	width: 10px !important;
	height: 10px !important;
}

.swiper-pagination-bullet-active {
	background: var(--oleg-orange) !important;
	transform: scale(1.2);
	box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.35);
}

/* Lightbox overlay */
.oleg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-sizing: border-box;
}

.oleg-lightbox[hidden] {
	display: none !important;
}

.oleg-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	cursor: pointer;
}

.oleg-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: var(--oleg-white);
	color: var(--oleg-black);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	transition: background 0.2s, transform 0.15s;
}

.oleg-lightbox__close:hover,
.oleg-lightbox__close:focus-visible {
	background: var(--oleg-orange);
	outline: none;
}

.oleg-lightbox__img {
	position: relative;
	z-index: 1;
	max-width: min(96vw, 1200px);
	max-height: min(88vh, 900px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
}

/* Service detail pages */
.oleg-breadcrumb {
	max-width: var(--oleg-max);
	margin: 0 auto;
	padding: 1rem 1.25rem 0;
	font-size: 0.85rem;
	color: var(--oleg-muted);
}

.oleg-breadcrumb a {
	color: var(--oleg-orange-dark);
	font-weight: 600;
	text-decoration: none;
}

.oleg-breadcrumb a:hover {
	text-decoration: underline;
}

.oleg-breadcrumb__sep {
	margin: 0 0.5rem;
	opacity: 0.5;
}

.oleg-service-hero {
	padding: 1.5rem 1.25rem 3.5rem;
	background: linear-gradient(180deg, var(--oleg-bg) 0%, var(--oleg-white) 55%);
}

.oleg-service-hero__grid {
	max-width: var(--oleg-max);
	margin: 0 auto;
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.oleg-service-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: 3rem;
	}
}

.oleg-service-hero__kicker {
	font-family: var(--font-head);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--oleg-orange);
	margin: 0 0 0.65rem;
}

.oleg-service-hero__title {
	font-family: var(--font-head);
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 800;
	color: var(--oleg-black);
	margin: 0 0 1rem;
	line-height: 1.15;
}

.oleg-service-hero__lead {
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
	color: var(--oleg-muted);
	max-width: 52ch;
	line-height: 1.65;
}

.oleg-service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.oleg-service-hero__media {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--oleg-shadow);
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: var(--oleg-white);
}

.oleg-service-hero__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.oleg-service-features__title {
	font-family: var(--font-head);
	font-size: 1.35rem;
	font-weight: 800;
	text-align: center;
	margin: 0 0 1.75rem;
	color: var(--oleg-black);
}

.oleg-service-features__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.oleg-service-features__item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 1rem 1.15rem;
	background: var(--oleg-white);
	border-radius: 12px;
	border: 1px solid var(--oleg-border);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	font-size: 0.95rem;
	color: var(--oleg-text);
	line-height: 1.55;
}

.oleg-service-features__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 8px;
	background: linear-gradient(145deg, var(--oleg-orange) 0%, var(--oleg-orange-dark) 100%);
	color: var(--oleg-white);
	font-size: 0.75rem;
	font-weight: 800;
	margin-top: 0.1rem;
}

.oleg-service-features__cta {
	text-align: center;
	margin-top: 2rem;
}

.oleg-service-bottom-cta {
	padding: 4rem 1.25rem;
	background: linear-gradient(135deg, #050505 0%, #000000 70%, #854f0a 100%);
	color: var(--oleg-white);
	text-align: center;
	border-top: 1px solid rgba(247, 148, 29, 0.15);
}

.oleg-service-bottom-cta__inner {
	max-width: 560px;
	margin: 0 auto;
}

.oleg-service-bottom-cta h2 {
	font-family: var(--font-head);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 800;
	margin: 0 0 0.75rem;
	color: var(--oleg-white);
}

.oleg-service-bottom-cta p {
	margin: 0 0 1.35rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.98rem;
	line-height: 1.6;
}

/* Generic page template */
.oleg-page-simple__article {
	max-width: 720px;
	margin: 0 auto;
}

.oleg-page-simple__title {
	font-family: var(--font-head);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 1.25rem;
	color: var(--oleg-black);
}

.oleg-page-simple__content {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--oleg-text);
}

.oleg-page-simple__content p:first-child {
	margin-top: 0;
}

/* Reviews — dark band, elevated cards */
.oleg-section--reviews {
	background: linear-gradient(-60deg, #050505 0%, #000000 60%, #9e5b00 100%);
	color: #e8e8e8;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.oleg-section--reviews .oleg-section-inner {
	max-width: 1200px;
}

.oleg-reviews-kicker {
	font-family: var(--font-head);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--oleg-orange);
	margin: 0 0 0.5rem;
}

.oleg-section-title--light {
	color: var(--oleg-white);
}

.oleg-section-sub--light {
	color: rgba(255, 255, 255, 0.72);
}

.oleg-reviews-intro {
	text-align: center;
	margin-bottom: 2.75rem;
}

.oleg-google-pill--large {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 0.65rem 1.35rem;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--oleg-white);
	margin-top: 0.5rem;
	backdrop-filter: blur(8px);
}

.oleg-google-g {
	flex-shrink: 0;
}

.oleg-reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 700px) {
	.oleg-reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.oleg-reviews-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.oleg-review-card {
	position: relative;
	background: rgba(255, 255, 255, 0.97);
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.oleg-review-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--oleg-orange), var(--oleg-orange-dark));
}

.oleg-review-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1.35rem 1.35rem 0;
	gap: 0.75rem;
}

.oleg-review-card__quote {
	font-family: Georgia, serif;
	font-size: 3.5rem;
	line-height: 0.5;
	color: rgba(247, 148, 29, 0.35);
	font-weight: 700;
	user-select: none;
}

.oleg-stars {
	color: #fbbc04;
	font-size: 1rem;
	letter-spacing: 0.08em;
	margin: 0;
	line-height: 1;
}

.oleg-review-card__body {
	margin: 0;
	padding: 0 1.35rem 1.25rem;
	font-size: 0.95rem;
	color: var(--oleg-text);
	line-height: 1.65;
	flex: 1;
}

.oleg-review-card__body p {
	margin: 0 0 0.75rem;
}

.oleg-review-card__body p:last-child {
	margin-bottom: 0;
}

.oleg-review-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.35rem 1.35rem;
	margin-top: auto;
	border-top: 1px solid var(--oleg-border);
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.8) 0%, #fafafa 100%);
}

.oleg-review-card__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--oleg-orange) 0%, var(--oleg-orange-dark) 100%);
	color: var(--oleg-white);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(247, 148, 29, 0.35);
}

.oleg-review-card__author {
	font-family: var(--font-head);
	font-weight: 700;
	font-style: normal;
	font-size: 0.95rem;
	color: var(--oleg-black);
}

.oleg-reviews-cta {
	text-align: center;
	margin: 2.5rem 0 0;
}

.oleg-review-placeholder {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.85);
	max-width: 52ch;
	margin-left: auto;
	margin-right: auto;
}

/* CTA + contact form */
.oleg-cta {
	background: linear-gradient(135deg, #7a4600 10%, #000000 60%, #7a4600 100%);
	color: var(--oleg-white);
	text-align: center;
	padding: 4rem 1.25rem;
}

.oleg-cta__inner {
	max-width: 560px;
	margin: 0 auto;
}

.oleg-cta h2 {
	font-family: var(--font-head);
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	margin: 0 0 1rem;
}

.oleg-cta__intro {
	margin: 0 0 1.75rem;
	opacity: 0.92;
	max-width: 50ch;
	margin-left: auto;
	margin-right: auto;
}

.oleg-form-notice {
	padding: 0.9rem 1.1rem;
	border-radius: 10px;
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	text-align: left;
}

.oleg-form-notice--success {
	background: rgba(52, 168, 83, 0.2);
	border: 1px solid rgba(52, 168, 83, 0.55);
	color: #b8e6c8;
}

.oleg-form-notice--error {
	background: rgba(234, 67, 53, 0.15);
	border: 1px solid rgba(234, 67, 53, 0.45);
	color: #ffc9c4;
}

.oleg-contact-form {
	position: relative;
	text-align: left;
}

.oleg-form-row {
	margin-bottom: 1.15rem;
}

.oleg-form-label {
	display: block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.88rem;
	margin-bottom: 0.4rem;
	color: rgba(255, 255, 255, 0.95);
}

.oleg-form-req {
	font-weight: 500;
	color: var(--oleg-orange);
	font-size: 0.8rem;
}

.oleg-form-opt {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.8rem;
}

.oleg-form-input,
.oleg-form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.08);
	color: var(--oleg-white);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: border-color 0.2s, background 0.2s;
	box-sizing: border-box;
}

.oleg-form-input::placeholder,
.oleg-form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.oleg-form-input:focus,
.oleg-form-textarea:focus {
	outline: none;
	border-color: var(--oleg-orange);
	background: rgba(255, 255, 255, 0.12);
}

.oleg-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.oleg-form-actions {
	margin: 1.5rem 0 0;
}

.oleg-form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: 0;
}

.oleg-cta__or {
	margin: 2rem 0 0.75rem;
	font-size: 0.88rem;
	opacity: 0.75;
}

.oleg-cta__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
}

.oleg-btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	color: var(--oleg-white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: none;
}

.oleg-btn--ghost:hover {
	background: var(--oleg-orange);
	color: var(--oleg-black);
	border-color: transparent;
	text-decoration: none;
}

.oleg-cta .oleg-btn--primary {
	min-width: 160px;
}

/* Footer */
.oleg-footer {
	background: #0d0d0d;
	color: #ccc;
	padding: 3rem 1.25rem 2rem;
	font-size: 0.9rem;
}

.oleg-footer-inner {
	max-width: var(--oleg-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

.oleg-footer h3 {
	font-family: var(--font-head);
	color: var(--oleg-white);
	font-size: 1rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.oleg-footer a {
	color: #eee;
	text-decoration: none;
}

.oleg-footer a:hover {
	color: var(--oleg-orange);
}

.oleg-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.oleg-footer li {
	margin-bottom: 0.5rem;
}

.oleg-footer-bottom {
	max-width: var(--oleg-max);
	margin: 2rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid #333;
	text-align: center;
	font-size: 0.85rem;
	color: #888;
}

@media (max-width: 720px) {
	.oleg-header-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.oleg-nav {
		width: 100%;
		justify-content: flex-start;
	}
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.oleg-hero__bg {
		animation: none !important;
	}

	.oleg-hero-animate .oleg-hero__content>* {
		opacity: 1 !important;
		animation: none !important;
	}

	.oleg-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.oleg-guarantee-item:hover {
		transform: none;
	}

	.oleg-gallery-showcase__track {
		transition: none !important;
	}
}