/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* =====================================================
   ELIT HERO — Homepage Fashion Brand Section
   Zameni --elit-hero-bg sa URL-om Midjourney banera
   ===================================================== */

:root {
	--elit-hero-bg: url('https://elitjeans.com/wp-content/uploads/2026/04/Pozadina.png');
	--elit-hero-overlay: rgba(0, 0, 0, 0.68);
	--elit-hero-min-height: 92vh;
}

.elit-hero {
	position: relative;
	min-height: var(--elit-hero-min-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #262626 100%);
	background-image: var(--elit-hero-bg);
	background-size: cover;
	background-position: center top;
	overflow: hidden;
	margin-top: -1px;
}

.elit-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--elit-hero-overlay);
}

.elit-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 780px;
	padding: 2rem 1.5rem;
}

.elit-hero__eyebrow {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1.75rem;
	font-weight: 400;
}

.elit-hero__title {
	font-size: clamp(2rem, 5.5vw, 4.2rem);
	font-weight: 700;
	line-height: 1.08;
	color: #ffffff;
	margin: 0 0 2.5rem;
	letter-spacing: -0.025em;
}

.elit-hero__title em {
	font-style: normal;
	color: rgba(255, 255, 255, 0.75);
}

.elit-hero__cta {
	display: inline-block;
	padding: 0.95rem 2.8rem;
	border: 1.5px solid rgba(255, 255, 255, 0.85);
	color: #ffffff;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.elit-hero__cta:hover,
.elit-hero__cta:focus {
	background: #ffffff;
	color: #0d0d0d;
	border-color: #ffffff;
	text-decoration: none;
}

/* =====================================================
   CATEGORY SPLIT — Muškarci / Žene editorial block
   ===================================================== */

.elit-category-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 65vh;
}

.elit-category-split__item {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 3rem 2.5rem;
	overflow: hidden;
	background: #111;
	text-decoration: none;
}

.elit-category-split__item--women {
	background: #f5f0ea;
}

.elit-category-split__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.elit-category-split__item:hover .elit-category-split__bg {
	transform: scale(1.04);
}

.elit-category-split__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 60%);
}

.elit-category-split__item--women .elit-category-split__overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
}

.elit-category-split__content {
	position: relative;
	z-index: 1;
}

.elit-category-split__label {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.65);
	margin-bottom: 0.5rem;
}

.elit-category-split__title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.1;
}

.elit-category-split__cta {
	display: inline-block;
	padding: 0.7rem 1.8rem;
	border: 1.5px solid rgba(255,255,255,0.8);
	color: #fff;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.elit-category-split__cta:hover {
	background: #fff;
	color: #111;
}

/* =====================================================
   NEW COLLECTION — Products grid
   ===================================================== */

.elit-new-collection {
	padding: 5rem 0;
	background: #fafafa;
}

.elit-new-collection__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.elit-new-collection__header {
	text-align: center;
	margin-bottom: 3rem;
}

.elit-new-collection__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #666; /* #999 = 2.66:1 fail → #666 = 4.74:1 pass WCAG AA */
	margin-bottom: 0.75rem;
}

.elit-new-collection__title {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #111;
	margin: 0;
	letter-spacing: -0.02em;
}

.elit-new-collection__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.elit-product-card {
	background: #fff;
	text-decoration: none;
	display: block;
}

.elit-product-card__img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/4;
	background: #ececec;
}

.elit-product-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.elit-product-card:hover .elit-product-card__img-wrap img {
	transform: scale(1.05);
}

.elit-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: #111;
	color: #fff;
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 0.3rem 0.65rem;
}

.elit-product-card__body {
	padding: 1rem 0.25rem 0.5rem;
}

.elit-product-card__name {
	font-size: 0.88rem;
	font-weight: 600;
	color: #111;
	margin: 0 0 0.35rem;
	line-height: 1.3;
}

.elit-product-card__price {
	font-size: 0.82rem;
	color: #555;
}

.elit-product-card__price .amount {
	color: #111;
	font-weight: 600;
}


.elit-new-collection__footer {
	text-align: center;
	margin-top: 3rem;
}

.elit-btn-outline {
	display: inline-block;
	padding: 0.9rem 2.5rem;
	border: 1.5px solid #111;
	color: #111;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.2s, color 0.2s;
}

.elit-btn-outline:hover {
	background: #111;
	color: #fff;
}

/* =====================================================
   HERITAGE STRIP — Brand story block
   ===================================================== */

.elit-heritage {
	background: #111;
	padding: 4.5rem 2rem;
	text-align: center;
}

.elit-heritage__year {
	display: block;
	font-size: 5rem;
	font-weight: 800;
	/* Decorative watermark — aria-hidden in HTML, color transparent for Lighthouse */
	color: transparent;
	text-shadow: 0 0 0 rgba(255, 255, 255, 0.10);
	line-height: 1;
	margin-bottom: -1.5rem;
	letter-spacing: -0.04em;
	user-select: none;
	pointer-events: none;
}

.elit-heritage__text {
	position: relative;
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	color: rgba(255,255,255,0.88);
	font-weight: 300;
	letter-spacing: 0.04em;
	max-width: 640px;
	margin: 0 auto 1.75rem;
	line-height: 1.5;
}

.elit-heritage__text strong {
	font-weight: 700;
	color: #fff;
}

.elit-heritage__cta {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.75); /* 0.5 = ~4.4:1 fail → 0.75 = ~8.6:1 pass */
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.45);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}

.elit-heritage__cta:hover {
	color: #fff;
	border-color: #fff;
}

/* =====================================================
   TRUST BAR — 4-column icon row
   ===================================================== */

.elit-trust {
	background: #fff;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	padding: 3rem 2rem;
}

.elit-trust__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.elit-trust__item-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 0.75rem;
	color: #111;
}

.elit-trust__item-icon svg {
	display: block;
}

.elit-trust__item-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: #111;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.elit-trust__item-text {
	font-size: 0.78rem;
	color: #333; /* explicit dark for WCAG AA compliance */
	line-height: 1.5;
}

/* =====================================================
   FOOTER CATEGORIES — LOW-4 internal linking
   ===================================================== */

.elit-footer-cat {
	padding: 0;
}

.elit-footer-cat__heading {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 1rem;
	color: #fff;
}

.elit-footer-cat__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.elit-footer-cat__item {
	margin-bottom: 0.5rem;
}

.elit-footer-cat__link {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.18s;
}

.elit-footer-cat__link:hover {
	color: #fff;
	text-decoration: none;
}

.elit-footer-cat__sub {
	list-style: none;
	margin: 0.35rem 0 0 0.75rem;
	padding: 0;
}

.elit-footer-cat__sub li {
	margin-bottom: 0.3rem;
}

.elit-footer-cat__sub a {
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.18s;
}

.elit-footer-cat__sub a:hover {
	color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   B2B SPLIT — Uniforme / OEM-ODM
   ===================================================== */

.elit-b2b-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.elit-b2b-split__panel {
	padding: 6rem 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.elit-b2b-split__panel--dark {
	background: #111;
}

.elit-b2b-split__panel--light {
	background: #f5f0ea;
}

.elit-b2b-split__inner {
	max-width: 420px;
}

.elit-b2b-split__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.elit-b2b-split__panel--dark .elit-b2b-split__eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.elit-b2b-split__panel--light .elit-b2b-split__eyebrow {
	color: #888;
}

.elit-b2b-split__title {
	font-size: clamp(1.8rem, 2.8vw, 2.6rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
}

.elit-b2b-split__panel--dark .elit-b2b-split__title {
	color: #fff;
}

.elit-b2b-split__panel--light .elit-b2b-split__title {
	color: #111;
}

.elit-b2b-split__text {
	font-size: 0.92rem;
	line-height: 1.7;
	margin: 0 0 2.5rem;
}

.elit-b2b-split__panel--dark .elit-b2b-split__text {
	color: rgba(255, 255, 255, 0.65);
}

.elit-b2b-split__panel--light .elit-b2b-split__text {
	color: #555;
}

.elit-b2b-split__cta {
	display: inline-block;
	padding: 0.85rem 2.2rem;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	border: 1.5px solid;
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.elit-b2b-split__cta--light {
	border-color: rgba(255, 255, 255, 0.75);
	color: #fff;
}

.elit-b2b-split__cta--light:hover,
.elit-b2b-split__cta--light:focus {
	background: #fff;
	color: #111;
	border-color: #fff;
	text-decoration: none;
}

.elit-b2b-split__cta--dark {
	border-color: #111;
	color: #111;
}

.elit-b2b-split__cta--dark:hover,
.elit-b2b-split__cta--dark:focus {
	background: #111;
	color: #fff;
	text-decoration: none;
}

/* =====================================================
   RESPONSIVE — Luxury Home
   ===================================================== */

/* =====================================================
   OEM / ODM PAGE
   ===================================================== */

.elit-hero--oem {
	background-image: url('https://elitjeans.com/wp-content/uploads/2026/04/Pozadina2.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.elit-oem-intro {
	background: #fff;
	padding: 5rem 2rem;
}

.elit-oem-intro__inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.elit-oem-intro__lead {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.8;
	color: #444;
	font-weight: 300;
	letter-spacing: 0.01em;
}

.elit-oem-advantages {
	background: #f5f5f3;
	padding: 6rem 2rem;
}

.elit-oem-advantages__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.elit-oem-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.elit-oem-advantages__item {
	padding: 2.5rem 2rem;
	background: #fff;
	border-top: 2px solid #111;
}

.elit-oem-advantages__number {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 0.25em;
	color: #999;
	margin-bottom: 1.25rem;
	font-weight: 500;
}

.elit-oem-advantages__title {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 0.85rem;
	letter-spacing: -0.01em;
}

.elit-oem-advantages__text {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

.elit-oem-contact {
	background: #111;
	padding: 6rem 2rem;
	text-align: center;
}

.elit-oem-contact__inner {
	max-width: 600px;
	margin: 0 auto;
}

.elit-oem-contact__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 1.25rem;
}

.elit-oem-contact__title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.elit-oem-contact__text {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin: 0 0 2.5rem;
}

.elit-oem-contact .elit-btn-outline {
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

.elit-oem-contact .elit-btn-outline:hover {
	background: #fff;
	color: #111;
	border-color: #fff;
}

/* =====================================================
   UNIFORME PAGE
   ===================================================== */

.elit-hero--uniforme {
	background-image: url('https://elitjeans.com/wp-content/uploads/2026/04/Pozadina2.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.elit-uni-materials {
	background: #fff;
	padding: 6rem 2rem;
}

.elit-uni-materials__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.elit-uni-materials__header {
	text-align: center;
	margin-bottom: 4rem;
}

.elit-uni-materials__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 0.75rem;
}

.elit-uni-materials__title {
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.elit-uni-materials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.elit-uni-materials__item {
	padding: 2.5rem;
	background: #f5f5f3;
	border-bottom: 2px solid #111;
}

.elit-uni-materials__item-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 0.85rem;
	letter-spacing: -0.01em;
}

.elit-uni-materials__item-text {
	font-size: 0.88rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

.elit-uni-process {
	background: #111;
	padding: 6rem 2rem;
}

.elit-uni-process__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.elit-uni-process__header {
	text-align: center;
	margin-bottom: 4rem;
}

.elit-uni-process__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.75rem;
}

.elit-uni-process__title {
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
	letter-spacing: -0.02em;
}

.elit-uni-process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.elit-uni-process__step {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 2rem;
}

.elit-uni-process__step-num {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 0.25em;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 1.25rem;
	font-weight: 500;
}

.elit-uni-process__step-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.85rem;
}

.elit-uni-process__step-text {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	margin: 0;
}

.elit-uni-contact {
	background: #f5f5f3;
	padding: 6rem 2rem;
	text-align: center;
}

.elit-uni-contact__inner {
	max-width: 600px;
	margin: 0 auto;
}

.elit-uni-contact__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 1.25rem;
}

.elit-uni-contact__title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.elit-uni-contact__text {
	font-size: 0.92rem;
	color: #555;
	line-height: 1.7;
	margin: 0 0 2.5rem;
}

/* =====================================================
   RESPONSIVE — OEM & Uniforme pages
   ===================================================== */

@media (max-width: 900px) {
	.elit-oem-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.elit-oem-advantages__grid,
	.elit-uni-materials__grid,
	.elit-uni-process__steps {
		grid-template-columns: 1fr;
	}

	.elit-oem-advantages {
		padding: 4rem 1.5rem;
	}

	.elit-uni-materials,
	.elit-uni-process,
	.elit-oem-intro,
	.elit-oem-contact,
	.elit-uni-contact {
		padding: 4rem 1.5rem;
	}
}

/* =====================================================
   RESPONSIVE — Luxury Home
   ===================================================== */

@media (max-width: 640px) {
	:root {
		--elit-hero-min-height: 85vh;
	}

	.elit-hero__title {
		font-size: clamp(1.7rem, 8vw, 2.5rem);
	}

	.elit-hero__cta {
		padding: 0.85rem 2rem;
		font-size: 0.72rem;
	}

	.elit-category-split {
		grid-template-columns: 1fr;
	}

	.elit-b2b-split {
		grid-template-columns: 1fr;
	}

	.elit-b2b-split__panel {
		padding: 4rem 2rem;
	}

	.elit-category-split__item {
		min-height: 55vw;
	}

	.elit-new-collection__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.elit-trust__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 400px) {
	.elit-new-collection__grid {
		grid-template-columns: 1fr;
	}
}

/* =====================================================
   O NAMA PAGE
   ===================================================== */

.elit-hero--about {
	background-image: url('https://elitjeans.com/wp-content/uploads/2026/04/Pozadina2.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Shared eyebrow + title helpers used across about sections */
.elit-about-section__eyebrow {
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 0.85rem;
}

.elit-about-section__eyebrow--light {
	color: rgba(255, 255, 255, 0.4);
}

.elit-about-section__title {
	font-size: clamp(1.5rem, 2.8vw, 2.4rem);
	font-weight: 700;
	color: #111;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 1.75rem;
}

.elit-about-section__title--light {
	color: #fff;
}

/* ── 2. ORIGIN ── */
.elit-about-origin {
	background: #fff;
	padding: 7rem 2rem;
}

.elit-about-origin__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.elit-about-origin__text p {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.8;
	margin: 0 0 1.25rem;
}

.elit-about-origin__text p:last-child {
	margin-bottom: 0;
}

.elit-about-origin__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* ── 3. MILESTONES ── */
.elit-about-milestones {
	background: #f5f5f3;
	padding: 6rem 2rem;
}

.elit-about-milestones__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.elit-about-milestones__item {
	border-top: 2px solid #111;
	padding-top: 1.75rem;
}

.elit-about-milestones__year {
	display: block;
	font-size: clamp(1.4rem, 2vw, 2rem);
	font-weight: 800;
	color: #111;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
	line-height: 1;
}

.elit-about-milestones__text {
	font-size: 0.88rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

/* ── 4. PRODUCTION ── */
.elit-about-production {
	background: #fff;
	padding: 7rem 2rem;
}

.elit-about-production__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.elit-about-production__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.elit-about-production__text p {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.8;
	margin: 0 0 1.25rem;
}

.elit-about-production__text p:last-child {
	margin-bottom: 0;
}

/* ── 5. VALUES ── */
.elit-about-values {
	background: #111;
	padding: 6rem 2rem;
}

.elit-about-values__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.elit-about-values__header {
	text-align: center;
	margin-bottom: 4rem;
}

.elit-about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.elit-about-values__item {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 2rem;
}

.elit-about-values__item-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.85rem;
	letter-spacing: 0.02em;
}

.elit-about-values__item-text {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	margin: 0;
}

/* ── 6. FOUNDERS ── */
.elit-about-founders {
	background: #fafafa;
	padding: 7rem 2rem;
	text-align: center;
}

.elit-about-founders__inner {
	max-width: 720px;
	margin: 0 auto;
}

.elit-about-founders__quote {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 300;
	color: #222;
	line-height: 1.65;
	letter-spacing: 0.01em;
	margin: 0 0 2.5rem;
	border: none;
	padding: 0;
	font-style: italic;
}

.elit-about-founders__sig {
	font-size: 0.88rem;
	font-weight: 700;
	color: #111;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.8;
}

.elit-about-founders__sig span {
	font-weight: 400;
	color: #888;
	text-transform: none;
	letter-spacing: 0;
}

/* ── 7. CTA ── */
.elit-about-cta {
	background: #fff;
	border-top: 1px solid #ebebeb;
	padding: 5rem 2rem;
	text-align: center;
}

.elit-about-cta__inner {
	max-width: 600px;
	margin: 0 auto;
}

.elit-about-cta__title {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 700;
	color: #111;
	letter-spacing: -0.025em;
	margin: 0 0 2.5rem;
	line-height: 1.1;
}

.elit-about-cta__buttons {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.elit-about-milestones__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.elit-about-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.elit-about-origin__inner,
	.elit-about-production__inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.elit-about-production__inner {
		direction: ltr;
	}

	.elit-about-milestones__inner,
	.elit-about-values__grid {
		grid-template-columns: 1fr;
	}

	.elit-about-origin,
	.elit-about-production,
	.elit-about-milestones,
	.elit-about-values,
	.elit-about-founders,
	.elit-about-cta {
		padding: 4rem 1.5rem;
	}
}