/* Symbol Group — Minay Promosyon page */

body.sgm-page .entry-header,
body.sgm-page .page-header,
body.sgm-page h1.entry-title,
body.sgm-page .wp-block-post-title {
	display: none !important;
}

body.sgm-page .site-main,
body.sgm-page .page-content,
body.sgm-page .entry-content,
body.sgm-page .elementor-widget-container,
body.sgm-page .elementor-widget-shortcode,
body.sgm-page .elementor-element {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.sgm {
	--navy: #121c3d;
	--orange: #dc6b1f;
	--paper: #f4f0ea;
	--ink: #161616;
	--muted: #5c5a56;
	font-family: Outfit, "Segoe UI", sans-serif;
	color: var(--ink);
	line-height: 1.55;
	background: #fff;
}

.sgm h1,
.sgm h2,
.sgm h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
}

.sgm-wrap {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.sgm-kicker {
	margin: 0 0 14px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--orange);
}

.sgm-kicker--dark {
	color: var(--orange);
}

.sgm-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	border-radius: 2px;
	background: var(--navy);
	color: #fff !important;
	text-decoration: none !important;
	font-size: 17px;
	font-weight: 500;
}

.sgm-btn:hover {
	background: var(--orange);
}

.sgm-btn--light {
	background: #fff;
	color: var(--navy) !important;
}

.sgm-btn--light:hover {
	background: var(--orange);
	color: #fff !important;
}

.sgm-btn--ghost-light {
	background: transparent;
	color: #fff !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.sgm-btn--ghost-light:hover {
	background: #fff;
	color: var(--navy) !important;
}

.sgm-link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 4px;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sgm-link span {
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	padding-bottom: 4px;
}

.sgm-link::after {
	content: "";
	width: 40px;
	height: 1px;
	background: #fff;
	transition: width 0.3s ease, background 0.3s ease;
}

.sgm-link:hover span {
	border-color: var(--orange);
}

.sgm-link:hover::after {
	width: 72px;
	background: var(--orange);
}

/* Hero */

.sgm-hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	height: min(78vh, 640px);
	min-height: 460px;
	overflow: hidden;
	background: #111;
}

.sgm-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sgm-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(8, 12, 28, 0.82) 0%,
		rgba(8, 12, 28, 0.5) 48%,
		rgba(8, 12, 28, 0.22) 100%
	);
}

.sgm-hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	max-width: 680px;
	padding: 72px 8vw 72px;
	color: #fff;
}

.sgm-hero h1 {
	font-size: clamp(42px, 6.4vw, 78px);
	color: #fff;
}

.sgm-hero__lead {
	max-width: 32em;
	margin: 18px 0 28px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.88);
}

.sgm-stats {
	background: var(--paper);
}

.sgm-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 36px 0;
	text-align: center;
}

.sgm-stats strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(28px, 3vw, 40px);
	color: var(--navy);
}

.sgm-stats span {
	font-size: 14px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.sgm-story {
	padding: 88px 0;
}

.sgm-story__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 72px;
}

.sgm-story h2 {
	margin-bottom: 22px;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--navy);
}

.sgm-story__copy p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 19px;
}

.sgm-timeline {
	margin: 0;
	padding: 8px 0 0 22px;
	border-left: 1px solid #d9d2c7;
	list-style: none;
}

.sgm-timeline li {
	position: relative;
	margin: 0 0 28px;
	padding-left: 22px;
}

.sgm-timeline li::before {
	content: "";
	position: absolute;
	left: -27px;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--orange);
}

.sgm-timeline time {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
}

.sgm-timeline p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.sgm-work {
	padding: 0 0 88px;
}

.sgm-work h2 {
	margin: 0 0 36px;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--navy);
}

.sgm-work__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.sgm-work article {
	padding: 28px 24px;
	background: var(--paper);
}

.sgm-work span {
	display: block;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--orange);
}

.sgm-work h3 {
	margin: 0 0 10px;
	font-size: 24px;
	color: var(--navy);
}

.sgm-work p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.sgm-vitrine {
	padding: 0 0 96px;
}

.sgm-vitrine h2 {
	margin: 0 0 8px;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--navy);
}

.sgm-vitrine__note {
	margin: 0 0 32px;
	color: var(--muted);
	font-size: 18px;
}

.sgm-vitrine__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.sgm-item {
	display: block;
	text-decoration: none !important;
	color: var(--ink) !important;
	background: var(--paper);
}

.sgm-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: #ece8e2;
}

.sgm-item__copy {
	padding: 18px 18px 22px;
}

.sgm-item span {
	display: block;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
}

.sgm-item strong {
	display: block;
	margin: 6px 0 8px;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--navy);
}

.sgm-item p {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.sgm-item:hover strong {
	color: var(--orange);
}

.sgm-refs {
	padding: 72px 0 80px;
	overflow: hidden;
	background: #f7f4ef;
}

.sgm-refs__head {
	margin-bottom: 28px;
}

.sgm-refs h2 {
	margin: 0 0 8px;
	font-size: clamp(32px, 4vw, 48px);
	color: var(--navy);
}

.sgm-refs__note {
	margin: 0;
	max-width: 40em;
	color: var(--muted);
	font-size: 18px;
}

.sgm-refs__viewport {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sgm-refs__track {
	display: flex;
	width: max-content !important;
	max-width: none !important;
	animation: sgm-marquee 45s linear infinite;
}

.sgm-refs__viewport:hover .sgm-refs__track {
	animation-play-state: paused;
}

.sgm-refs__group {
	display: flex;
	gap: 16px;
	padding-right: 16px;
	flex: 0 0 auto !important;
	width: auto !important;
}

.sgm-refs__logo {
	flex: 0 0 auto !important;
	width: 168px !important;
	height: 100px !important;
	max-width: 168px !important;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow: hidden;
	isolation: isolate;
	background: #fff;
	border: 1px solid #e6e0d8;
}

.sgm-refs__logo img {
	width: auto !important;
	height: 42px !important;
	max-width: 120px !important;
	max-height: 42px !important;
	object-fit: contain !important;
	display: block;
}

@keyframes sgm-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

.sgm-go {
	padding: 64px 0;
	background: var(--navy);
	color: #fff;
}

.sgm-go h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 3.6vw, 42px);
	color: #fff;
}

.sgm-go__copy p {
	margin: 0 0 28px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
}

.sgm-go__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.sgm-go__contacts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.sgm-go__contacts a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	color: #fff !important;
	text-decoration: none !important;
}

.sgm-go__contacts a:hover {
	border-color: var(--orange);
	background: rgba(255, 255, 255, 0.08);
}

.sgm-go__icon {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
}

.sgm-go__icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.sgm-go__contacts em {
	display: block;
	font-style: normal;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.sgm-go__contacts strong {
	display: block;
	margin-top: 4px;
	font-weight: 500;
	font-size: 20px;
}

@media (max-width: 860px) {
	.sgm-stats__grid,
	.sgm-story__grid,
	.sgm-work__grid,
	.sgm-go__row {
		grid-template-columns: 1fr;
	}

	.sgm-vitrine__grid {
		grid-template-columns: 1fr;
	}

	.sgm-hero {
		height: 72vh;
		margin-left: 0;
		width: 100%;
	}

	.sgm-hero__copy {
		padding: 48px 24px 56px;
	}
}

@media (max-width: 520px) {
	.sgm-stats__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sgm-refs__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
	}

	.sgm-refs__group[aria-hidden="true"] {
		display: none;
	}
}
