/*

 Theme Name:   GeneratePress Child

 Theme URI:    https://generatepress.com

 Description:  Default GeneratePress child theme

 Author:       Tom Usborne

 Author URI:   https://tomusborne.com

 Template:     generatepress

 Version:      0.1

*/

/* --------------------------------- */
/* ------------- Fonts ------------- */
/* --------------------------------- */


/* Alumni Sans is served from assets/css/../fonts/alumni-sans.css (self-hosted,
   full Cyrillic coverage). The original theme @font-face pointed at
   /wp-content/themes/generatepress_child/fonts/ which does not exist offline. */

/* @font-face {
	font-family: 'TT Firs';
	src:
		local('TT Firs'),
		url('/wp-content/themes/generatepress_child/fonts/TT Firs Neue Trial Regular.woff2') format('woff2'),
		url('/wp-content/themes/generatepress_child/fonts/TT Firs Neue Trial Regular.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
} */

::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}


/* --------------------------------- */
/* ------------- Main -------------- */
/* --------------------------------- */

html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Alumni Sans', sans-serif;
	scrollbar-width: none;
}

body {
	font-family: 'Alumni Sans', sans-serif;
	margin: 0;
	padding: 0;
	--accent-color: #E9E4E0;
	--accent-color-2: ;
	--accent-color-3: ;
	--g-background: ;
	--g-nav-background: ;
	--color-heading: #E9E4E0;
	--color-text: #E9E4E0;
	--g-nav-offset: 60px;
	--hero-height: calc(100vh - var(--global-nav-offset));
	--section-padding: 70px 0;
	background-color: #000;
	-ms-overflow-style: none;
	letter-spacing: 1px;
}

:root {
  --panel-bg: #1a1a1a;
  --white: #ffffff;
  --black: #111111;
  --gray-300: #b0b0b0;
  --gray-500: #6e6e6e;
  --panel-width: 34%;
  --font: "Outfit", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


/* --------------------------------- */
/* ------------- Font -------------- */
/* --------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-heading);
	margin: 0 0 10px 0;
	line-height: 100%;
}

p,
span {
	color: var(--color-text);
	/* margin: 0 0 10px 0; */
	line-height: 100%;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 25px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 17px;
}

p {
	font-size: 19px;
}

span {
	font-size: 17px;
}

a {
	text-decoration: none;
	color: var(--accent-color);
}

/* a:hover{
	color: var(--accent-color);
} */

/* --------------------------------- */
/* ---------- Containers ----------- */
/* --------------------------------- */


.container-sm,
.container,
.container-lg,
.container-xl,
.container-xxl {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.container {
	/* padding-left: clamp(12px, 2vw, 24px);
	padding-right: clamp(12px, 2vw, 24px); */
}

.container-sm {
	max-width: 960px;
}

.container {
	max-width: 1200px;
}

.container-lg {
	max-width: 1440px;
}

.container-xl {
	max-width: 1600px;
}

.container-xxl {
	max-width: 1800px;
	padding-left: clamp(12px, 2vw, 24px);
	padding-right: clamp(12px, 2vw, 24px);
}

.container-full {}

.site-header {
	/* background-color: var(--accent-color); */
	background-color: #000000;
	border-bottom: 1px solid #5C5C5C;
}

.vh-100 {
	height: 100vh;
}

.main-navigation a {
	font-size: 17px;
}

.auto-hide-sticky{
	backdrop-filter: blur(5px);
    background: #00000085;
}

/* --------------------------------- */
/* ------------- Grid -------------- */
/* --------------------------------- */

.rzn-grid {
	display: grid;
}

.gap-0 {
	gap: 0;
}

.gap-5 {
	gap: 5px;
}

.gap-10 {
	gap: 10px;
}

.gap-20 {
	gap: 20px;
}

.gap-30 {
	gap: 30px;
}

.gap-40 {
	gap: 40px;
}

.gap-50 {
	gap: 50px;
}

.rzn-col-5 {
	grid-template-columns: repeat(5, 1fr);
}

.rzn-col-4 {
	grid-template-columns: repeat(4, 1fr);
}

.rzn-col-3-3 {
	grid-template-columns: repeat(3, 1fr);
}

.rzn-col-3 {
	grid-template-columns: repeat(3, 1fr);
}

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

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

/* --------------------------------- */
/* ------------- Flex -------------- */
/* --------------------------------- */

.rzn-flex {
	display: flex;
}

/* --------------------------------- */
/* ---------- Positions ------------ */
/* --------------------------------- */

.h-center {
	justify-items: center;
}

.v-center {
	align-items: center;
}

.jc-s {
	justify-content: start;
}

.jc-c {
	justify-content: center;
}

.jc-e {
	justify-content: end;
}

.jc-sb {
	justify-content: space-between;
}

.ai-c {
	align-items: center;
}

.ai-e {
	align-items: end;
}

.ai-s {
	align-items: start;
}

.fd-c {
	flex-direction: column;
}

/* --------------------------------- */
/* ---------- Distances ------------ */
/* --------------------------------- */

.row-wrapper {
	padding: 50px 0;
}

.col-wrapper {
	padding: 50px;
}

.m-b-0 {
	margin-bottom: 0;
}

.w-100 {
	width: 100%;
}

/* --------------------------------- */
/* ---------- Sections ------------- */
/* --------------------------------- */

.sections-g {
	padding: var(--section-padding);
}

.sections-accent {}

/* --------------------------------- */
/* ----------- Titles -------------- */
/* --------------------------------- */

.titles-main {}

.title-hero {}

.titles-sections-w {
	padding: 20px 0px;
	border-bottom: 1px solid #5C5C5C;
	margin-bottom: 15px;
}

.titles-sections {

	font-size: 25px;
	margin: 0;
}

.titles-sections-bottom {
	padding: 15px 0px;
	border-top: 1px solid #5C5C5C;
	font-size: 25px;
}

.title-services {}

.titles-accent {}

.titles-wrapper {}

.titles-hint {}

/* --------------------------------- */
/* ------------- Text -------------- */
/* --------------------------------- */

.light-text {
	color: white;
}

.dark-text {
	color: black;
}

.center-text {
	text-align: center;
}

/* --------------------------------- */
/* ------------ Buttons ------------ */
/* --------------------------------- */

button {
	background: #e9e4e0;
	color: black;
	transition: all 0.2 ease-in-out;
	padding: 0px 10px;
}

button:hover {
	background: black #e9e4e0;
	color: #e9e4e0;
}

.btn {}

/* .btn-primary {

	background: #e9e4e0;
	color: black;
	transition: all 0.2 ease-in-out;
	padding: 3px 10px;
	z-index: 999;
	font-size: 24px;
}

.btn-primary:hover {

	background: black;
	color: #e9e4e0;
} */

a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active {
  position: relative;
  display: inline-block;
  background: #e9e4e0;
  color: #000 !important;
  padding: 3px 10px;
  z-index: 999;
  font-size: 24px !important;
  text-decoration: none !important;
  line-height: 1.2;
  overflow: hidden;
}

a.btn-primary > .btn-primary__label {
  display: block;
  white-space: nowrap;
  color: #000 !important;
  font-size: 24px !important;
}

a.btn-primary .btn-primary__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 3px 10px;
  background: #000;
  color: #fff !important;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  will-change: clip-path;
}

a.btn-primary .btn-primary__overlay .btn-primary__label {
  color: #fff !important;
  font-size: 24px !important;
}

/* .btn-primary a{

	color: black;
	transition: all 0.2 ease-in-out;
}

.btn-primary a:hover{

	color: #e9e4e0;
} */


.btn-dark {
	font-weight: 700;
	cursor: pointer;
	width: fit-content;
	padding: 15px;
	transition: 0.3s;
	background-color: #000;
	align-content: center;
	justify-self: center;
}

.btn-dark:hover {
	background: #333;
	color: var(--accent-color);
}

.txt-to-btn {
	width: fit-content;
	color: #e9e4e0cf;
	font-size: 21px;
	margin: 0;
	padding: 0 5px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.txt-to-btn:hover {
	background: #e9e4e0cf;
	color: black;
}

.txt-to-btn a:hover {
	color: black !important;
}


/* --------------------------------- */
/* ------------- Intro Video -------------- */
/* --------------------------------- */


/* Intro overlay */
.intro {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #000;
	display: grid;
	place-items: center;
}

/* Видеото да покрие целия екран */
.intro__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Skip бутон */
.intro__skip {
	position: absolute;
	right: 24px;
	bottom: 24px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(74, 73, 73, 0.35);
	background: rgb(0 0 0 / 7%);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(6px);
}

.enter {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgb(0, 0, 0);
	z-index: 2;
}

.enter-content {
	display: grid;
	justify-items: center;
}

.enter-logo-wrapp {
	width: 100px;
	display: grid;
	gap: 30px;
}

.enter-title {
	color: white;
}

.enter__btn {
	padding: 14px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(0, 0, 0, .55);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(8px);
}


.sound {
	position: absolute;
	left: 24px;
	/* или right */
	bottom: 24px;
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 1px solid rgb(255 255 255 / 0%);
	border-radius: 50%;
	background: #00000000;
	cursor: pointer;
	display: grid;
	place-items: center;
	backdrop-filter: blur(6px);
}

.sound__bars {
	display: flex;
	gap: 3px;
	align-items: flex-end;
	height: 18px;
}

/* 👇 САМО ТАЗИ версия на .sound__bar */
.sound__bar {
	width: 3px;
	height: 6px;
	border-radius: 2px;
	background: #fff;
	animation: soundEq 0.9s ease-in-out infinite;
	animation-play-state: paused;
	/* по default спрян */
}

/* stagger */
.sound__bar:nth-child(1) {
	animation-delay: 0s;
}

.sound__bar:nth-child(2) {
	animation-delay: .12s;
}

.sound__bar:nth-child(3) {
	animation-delay: .24s;
}

.sound__bar:nth-child(4) {
	animation-delay: .36s;
}

/* когато видеото играе И не е muted */
.sound.is-playing:not(.is-muted) .sound__bar {
	animation-play-state: running;
}

/* когато е muted */
.sound.is-muted .sound__bar {
	animation-play-state: paused;
	height: 5px;
	opacity: .6;
}

@keyframes soundEq {
	0% {
		height: 4px;
		opacity: .7;
	}

	20% {
		height: 14px;
		opacity: 1;
	}

	40% {
		height: 7px;
		opacity: .9;
	}

	60% {
		height: 18px;
		opacity: 1;
	}

	80% {
		height: 9px;
		opacity: .9;
	}

	100% {
		height: 4px;
		opacity: .7;
	}
}

/* Заглавието */

.headline {
	margin: 16px 0 22px;
	/* font-size: clamp(19.64px, 2.5vw, 35.7px); */
	font-size: clamp(16px, 2vw, 29px);
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
}

/* Letter spans for headline */
.headline .char {
	display: inline-block;
	will-change: transform, opacity, filter;
	/* font-size: clamp(19.64px, 2.5vw, 35.7px); */
	font-size: clamp(16px, 2vw, 29px);
}


.thought-layer {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.thought-word {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	font-size: clamp(18px, 2.2vw, 34px);
	font-weight: 700;
	letter-spacing: 0.04em;
	opacity: 0;
	filter: blur(14px);
	will-change: transform, opacity, filter;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 0 24px rgba(255, 255, 255, 0.10);
	mix-blend-mode: screen;
	white-space: nowrap;
}


/* --------------------------------- */
/* ------------- Hero -------------- */
/* --------------------------------- */

.hero {
	min-height: calc(100vh - 60px);
	align-content: end;
	background-position: bottom !important;
}

.hero__bar {
	background-color: var(--accent-color);
}

.hero__bar p,
.hero__bar a {
	color: black;
	font-weight: 600;
	margin: 0;
}

.hero__text {
	padding: 0 12px;
}


.hero__partner-logo {
	height: 60px;
	overflow: hidden;
}

.hero__partner-logo figure {
	height: 100%;
	margin: 0;
}

.hero__partner-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero__bar-nav,
.hero__bar-contact,
.hero__bar-legal {
	padding: 10px 0;
	align-items: center;
	justify-items: center;
}

.hero__bar-contact {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.hero__video-wrapp {
	max-width: 400px;
	padding: 0 12px;
	justify-self: flex-end;
}

/* --------------------------------- */
/* ---------- Authorship ----------- */
/* --------------------------------- */

.authorship__txt {
	padding: 20px 0;
}


.authorship__slide-img {}

/* .authorship__slide-img {
  position: relative;
}

.authorship__slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
} */

.authorship__slide-txt {
	text-align: left;
	padding: 0 100px 0 50px;
}


/* --------------------------------- */
/* ----------- Showcase ------------ */
/* --------------------------------- */

.showcase__img {
	/* height: 500px; */
	overflow: hidden;
}

.showcase__img figure {
	height: 100%;
	margin: 0;
}

.showcase__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.showcase__bar {
	background-color: var(--accent-color);
	border-top: 3px solid #000;
}

.showcase p,
.showcase h3,
.showcase svg {
	color: #000;
}

.showcase__bar {
	padding: 20px;
}


/* --------------------------------- */
/* --------- Featured Projects ---------- */
/* --------------------------------- */

.featured-projects-wrapp {
	padding-top: clamp(12px, 2vw, 24px);
	padding-bottom: clamp(12px, 2vw, 24px);
}


/* --------------------------------- */
/* --------- End Featured Projects ---------- */
/* --------------------------------- */




/* --------------------------------- */
/* --------- Our Projects ---------- */
/* --------------------------------- */

.our-projects__categories h4 {
	color: #e9e4e0cf;
	font-size: 21px;
	margin: 0;
	padding: 0 5px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.our-projects__categories h4:hover {
	background: #e9e4e0cf;
	color: black;
}

.our-projects_img {
	height: 500px;
	overflow: hidden;
}

.our-projects_img figure {
	height: 100%;
	margin: 0;
}

.our-projects_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.our-projects_txt {
	padding: 10px 0;
}

/* --------------------------------- */
/* ---------- Confidence ----------- */
/* --------------------------------- */

.confidence {
	background-color: var(--accent-color);
}

.confidence h2,
.confidence p {
	color: #000;
}

.confidence__title {
	padding: 20px 0;
}

/* --------------------------------- */
/* ------- Interior Slider --------- */
/* --------------------------------- */

.interior-slider {
	align-content: end;
}

.interior-slider__content {
	background: rgb(0, 0, 0, 0.3);
	padding: 50px;
}

.interior-slider__btn {
	background: var(--accent-color);
	padding: 15px 30px;
}

.interior-slider__btn p {
	color: #000;
	font-weight: bold;
}


/* --------------------------------- */
/* --------- Intermission ---------- */
/* --------------------------------- */

.intermission {
	position: relative;
	align-items: center;
	justify-items: center;
	overflow: hidden;
}

.intermission__person {
	max-width: 230px;
	top: 0;
	position: absolute;
}

.intermission__part {
	position: absolute;
	color: #252525;
	top: 50%;
	transform: translateY(-50%);
	font-size: 400px;
	font-weight: 800;
}

.intermission__part--left {
	left: 0;
}

.intermission__part--right {
	right: 0;
}

.intermission__question {
	transform: translate(-50%, 115%);
	top: 0;
	position: absolute;
	font-size: 70px;
	font-weight: 800;
	z-index: 1;
}

/* --------------------------------- */
/* ---------- Site Owner ----------- */
/* --------------------------------- */

.site-owner__container {
	padding: 100px 0;
}

.site-owner {
	position: relative;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 100px 0 0;
}

.site-owner__person {
	max-width: 700px;
	position: relative;
}

.site-owner__person::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 30%, rgb(0 0 0 / 0%) 40%);
	pointer-events: none;
}

.site-owner__part {
	position: absolute;
	transform: translateY(-50%);
	font-size: 200px;
	font-weight: 800;
}

.site-owner__part--left {
	left: 0;
	bottom: 250px;
	transform: translateX(calc(50%));
	z-index: -1;
}

.site-owner__part--right {
	right: 0;
	bottom: 0;
	z-index: -1;
}

.site-owner__content h3 {
	border-bottom: 1px solid #5C5C5C;
	padding-bottom: 10px;
}



/* ---------------------------------------------------------------------- */
/* -------------------------------- About Us ---------------------------- */
/* ---------------------------------- START ----------------------------- */

/* --------------------------------- */
/* ----------- About Us ------------ */
/* --------------------------------- */

.hero-about {
	display: grid;
	place-items: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
}

.hero-about__inner {
	width: min(980px, 100%);
	text-align: center;
	display: grid;
	justify-items: center;
}

.owner-hero {
	position: relative;
	overflow: hidden;
}

.owner-hero__part {
	position: absolute;
	top: 50%;
	font-size: 400px;
	font-weight: 700;
	color: #313131;
}

.owner-hero__part--left {
	left: 50px;
	transform: translateY(calc(-50% + 150px));
}

.owner-hero__part--right {
	right: 50px;
	transform: translateY(calc(-50% - 150px));
}

.owner-hero img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 80vh;
	z-index: 2;
}

.owner-hero__text p {
	text-align: center;
	padding-bottom: 30px;
}

/* --------------------------------- */
/* ----------- Our Team ------------ */
/* --------------------------------- */

.our-team {
	padding: 100px 0;
}

.our-team__person {
	min-height: 400px;
	align-content: end;
}

.our-team__person-bg {
	background: rgb(0, 0, 0, 0.3);
	padding: 30px;
}

/* --------------------------------- */
/* ----------- Signature ----------- */
/* --------------------------------- */
.signature {
	background-color: var(--accent-color);
	align-content: center;
}

.signature h2 {
	color: #9A9694;
}

.signature p {
	color: #000;
}

/* --------------------------------- */
/* ----------- Mission ------------- */
/* --------------------------------- */

.mission {
	background-color: var(--accent-color);
	align-content: center;
	border-top: 3px solid #000;
}

.mission p {
	color: #9A9694;
	font-size: 48px;
	font-weight: 800;
}


/* ---------------------------------------------------------------------- */
/* -------------------------------- About Us ---------------------------- */
/* ---------------------------------- END ------------------------------- */

/* ---------------------------------------------------------------------- */
/* -------------------------------- Contacts ---------------------------- */
/* --------------------------------- START ------------------------------ */

/* --------------------------------- */
/* -------- Contacts Hero ---------- */
/* --------------------------------- */

.contacts__hero-container {
	padding: 100px 0;
}

.contacts__hero {
	position: relative;
	display: grid;
	align-items: center;
	justify-items: center;
	padding: 100px 0 0;
}

.contacts__hero-person {
	max-width: 700px;
	position: relative;
	z-index: 10;
}

.contacts__hero-person::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 30%, rgb(0 0 0 / 0%) 40%);
	pointer-events: none;
}

.contacts__hero-part {
	position: absolute;
	transform: translateY(-50%);
}

.contacts__hero-part h3 {
	font-size: 200px;
	font-weight: 800;
	position: relative;
	z-index: 1;
}

.contacts__hero-part--left {
	left: 0;
	bottom: 250px;
	transform: translateX(calc(50%));
}

.contacts__hero-part--right {
	right: 0;
	bottom: -90px;
}

.contacts__hero-content h3 {
	border-bottom: 1px solid #5C5C5C;
	padding-bottom: 10px;
}

.contacts__hero-part p {
	position: relative;
	z-index: 20;
}

.contacts__hero-title {
	position: relative;
	z-index: 1;
}

.contacts__hero-name {
	z-index: 1;
}


/* --------------------------------- */
/* ------ Contacts Identity -------- */
/* --------------------------------- */

.contacts__identity {
	position: relative;
}

.contacts__identity-person {
	position: relative;
	max-width: 700px;
	z-index: 10;
}

.contacts__identity-person img {
	width: 100%;
	height: auto;
	display: block;
}

.contacts__identity-person::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 30%, rgb(0 0 0 / 0%) 40%);
}

.contacts__identity-title {
	position: absolute;
	z-index: 1;
}

.contacts__identity-title {
	font-size: 180px;
	font-weight: 800;
	margin: 0;
}

.contacts__identity-title--left {
	left: 140px;
	top: 80px;
}

.contacts__identity-title--right {
	right: 0;
	bottom: 100px;
}

.contacts__identity-info {
	position: absolute;
	z-index: 20;
}

.contacts__identity-info {
	margin: 0;
}

.contacts__identity-info--left {
	left: 140px;
}

.contacts__identity-info--right {
	right: 345px;
	bottom: 40px;
}

/* ---------------------------------------------------------------------- */
/* -------------------------------- Contacts ---------------------------- */
/* ---------------------------------- END ------------------------------- */

/* ---------------------------------------------------------------------- */
/* -------------------------------- Project ----------------------------- */
/* --------------------------------- START ------------------------------ */


/* --------------------------------- */
/* --------- Project Hero ---------- */
/* --------------------------------- */

.project-hero__img {
	height: 60vh;
	overflow: hidden;
}

.project-hero__img figure {
	height: 100%;
	margin: 0;
}

.project-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.project-hero__content {
	padding: 50px;
}

.project-hero__content h1 {
	border-bottom: 1px solid #E9E4E0;
	width: fit-content;
	justify-self: center;
}

/* --------------------------------- */
/* --------- About Project --------- */
/* --------------------------------- */
.about-project__content {
	border-left: 1px solid #434343;
	border-right: 1px solid #434343;
	padding: 20px;
}

.about-project {
	background-color: var(--accent-color);
	color: #000;
	padding: 20px;
}

.about-project p,
.about-project h2 {
	background-color: var(--accent-color);
	color: #000;
}

.about-project__items {
	padding: 50px 0 0;
}

.about-project__item:not(:first-child) {
	padding-left: 40px;
}

.about-project__item:not(:last-child) {
	border-right: 1px solid #434343;
}

/* --------------------------------- */
/* --------- About Project --------- */
/* --------------------------------- */

.project-img {
	height: 100vh;
	overflow: hidden;
}

.project-img figure {
	height: 100%;
	margin: 0;
}

.project-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* --------------------------------- */
/* ---------- Section FAQ ---------- */
/* --------------------------------- */

.faq {
	align-content: center;
}

.faq h2 {
	padding: 20px 0px;
	text-align: center;
}


.faq-item {
	border: 1px solid #1A1A1A;
	padding: 20px 15px 10px 15px;
	cursor: pointer;
	transition: 0.2s all ease-in-out;
	border-radius: 10px;
	background: linear-gradient(90deg, #000 0%, #191919 100%);
}

.faq-item:hover {
	color: #000;
}

.faq-title {
	color: var(--accent-color);
	font-size: 23px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

.toggle-symbol {
	font-size: 24px;
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: 0.2s all ease-in-out;
	margin-top: 10px;
	color: #9c9c9c;
}

.faq-item.active .faq-content {
	max-height: 300px;
}

.faq-item.active .toggle-symbol {
	transform: rotate(45deg);
}

/* ---------------------------------------------------------------------- */
/* -------------------------------- Project ----------------------------- */
/* ---------------------------------- END ------------------------------- */

/* ---------------------------------------------------------------------- */
/* ----------------------------- Page details --------------------------- */
/* --------------------------------- START ------------------------------ */
/* Класове които използваме в страниците Service details и Project Details*/

/* --------------------------------- */
/* ----- Page details Hero ------ */
/* --------------------------------- */

.page__hero {
	min-height: calc(100vh - 60px);
	padding: 0 clamp(1.4rem, 3vw, 2.2rem);
}

.page__hero-btn {
	width: fit-content;
	margin-bottom: 1.5em;
}

.page__hero-title {
	/* display: grid;
	justify-content: end; */
}

.page__hero-title h1 {
	font-size: clamp(2.4rem, 7vw, 5.5rem);
	font-weight: 700;
}

/* --------------------------------- */
/* --------- Page showcase --------- */
/* --------------------------------- */

.page-showcase__container {
	width: 100%;
}

.page-showcase__content-txt {
	width: 80%;
}

.page-showcase__content {
	width: 30%;
}

.page-showcase__img {
	width: 70%;
	overflow: hidden;
}

.page-showcase__img figure {
	height: 100%;
	margin: 0;
}

.page-showcase__img img {
	width: 100%;
	height: 100%;
	object-position: center;
	display: block;
}

.page-showcase__hero-btn {
	width: fit-content;
}

/* --------------------------------- */
/* ------- Page signle img --------- */
/* --------------------------------- */

.page__single-img {
	width: 100%;
	overflow: hidden;
}

.page__single-img figure {
	height: 100%;
	margin: 0;
}

.page__single-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}


/* ---------------------------------------------------------------------- */
/* --------------------------- Project details -------------------------- */
/* ---------------------------------- END ------------------------------- */

/* --------------------------------- */
/* ------------ Gallery ------------ */
/* --------------------------------- */

.gallery__content {
	border-left: 1px solid #434343;
	border-right: 1px solid #434343;
	padding: 20px;
}

.gallery {
	color: var(--accent-color);
	padding: 20px;
}

.gallery p,
.gallery h2 {
	color: var(--accent-color);
}

.gallery__items {
	padding: 50px 0 0;
}

.gallery__item:not(:first-child) {
	padding-left: 40px;
	padding-right: 40px;
}

.gallery__item:not(:last-child) {
	border-right: 1px solid #434343;
	padding-right: 40px;
}


/* ---------------------------------------------------------------------- */
/* ----------------------------- Page details --------------------------- */
/* ---------------------------------- END ------------------------------- */

/* --------------------------------- */
/* ------------ Footer ------------- */
/* --------------------------------- */

.footer {
	position: relative;
	min-height: 500px;
	align-items: center;
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.footer>* {
	position: relative;
	z-index: 1;
}

.footer__logo {
	width: 100px;
	overflow: hidden;
}

.footer__logo figure {
	height: 100%;
	margin: 0;
}

.footer__logo img {
	object-fit: cover;
	object-position: center;
	display: block;
}

.footer__social {
	padding-bottom: 20px;
}

.footer__social h6 {
	width: 35px;
	height: 35px;
	background-color: white;
	border-radius: 50%;
	justify-content: center;
	text-align: center;

}

.footer__text {
	width: 40%;
	padding-top: 30px;
}

.footer__bar {
	background-color: var(--accent-color);
	padding: 7px 0;
}

.footer__bar p,
.footer__bar a {
	color: black;
	font-weight: 600;
	margin: 0;
}

.footer__bar-links {
	color: black;
	text-align: center;
}


/* --------------------------------- */
/* ---------- VIDEO GALLERY PAGE --------- */
/* --------------------------------- */

.youtube-lazy-host {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	/* или height: 400px; */
	overflow: hidden;
}

.youtube-lazy-host>.youtube-lazy,
.youtube-lazy.youtube-lazy--fill {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: unset;
}

.youtube-lazy__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.youtube-lazy iframe {
	width: 100%;
	height: 100%;
}


.youtube-lazy-cursor-tip {
	position: fixed;
	z-index: 99999;
	padding: 0.4rem 0.65rem;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.82);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.youtube-lazy-cursor-tip.is-visible {
	opacity: 1;
}

/* --------------------------------- */
/* ---------- Contact Form --------- */
/* --------------------------------- */
.wpcf7-form-control-wrap .wpcf7-form-control {
	background: none;
	border: none;
	border-bottom: 1px solid #5C5C5C;
	width: 100%;
	color: #e9e4e0;
	text-align: center;
	margin-bottom: 10px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	box-shadow: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: white;
}

.wpcf7 form .wpcf7-response-output {
	color: white;
}

.contact-form {
	/* padding-top: 100px; */
	background: rgb(61, 61, 61);
}

.custom-contact-form {
	text-align: center;
	max-width: 400px;
}


.custom-contact-form input,
.custom-contact-form textarea {
	width: 100%;
	border: none;
	background: none;
	color: white;
	text-align: center;
}

.custom-contact-form input[type="submit"] {
	background: var(--accent-color);
	color: #000;
	padding: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
	width: fit-content;
}

.custom-contact-form input[type="submit"]:hover {
	background: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
	color: white;
	background: none;
	border-color: none;
}

.custom-contact-form textarea:focus {
	border: none;
}

.get-email {
	margin-bottom: 30px;
}

.wpcf7-spinner {
	display: none;
}

/* --------------------------------- */
/* -------------- Loader ------------- */
/* --------------------------------- */
/* Wrapper */
.rzn-loader {
	width: 100%;
	height: 3px;
	background: rgba(0, 0, 0, 0.08);
	margin-top: 15px;
	overflow: hidden;
	display: none;
	border-radius: 2px;
}

/* Анимация */
.rzn-loader-line {
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, #000, #666, #000);
	animation: rzn-loading 1.2s infinite ease-in-out;
}

/* Keyframes */
@keyframes rzn-loading {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(300%);
	}
}

/* --------------------------------- */
/* -------------- GSAP ------------- */
/* --------------------------------- */

.active-section {
	outline: 2px solid red;
	/* само за тест */
}

.slide-over-wrap {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slide-over-wrap .slide-panel {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.slide-over-wrap .slide-base {
	z-index: 1;
}

.slide-over-wrap .slide-next {
	z-index: 2;
}



/* --------------------------------- */
/* ---------- Media Query ---------- */
/* --------------------------------- */

@media (max-width: 900px) {
	.rzn-col-5 {
		grid-template-columns: repeat(3, 1fr);
	}

	.rzn-col-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.rzn-col-5 {
		grid-template-columns: repeat(2, 1fr);
	}

	.rzn-col-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.rzn-col-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 568px) {
	.rzn-col-5 {
		grid-template-columns: repeat(1, 1fr);
	}

	.rzn-col-4 {
		grid-template-columns: repeat(1, 1fr);
	}

	.rzn-col-3-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.rzn-col-3 {
		grid-template-columns: repeat(1, 1fr);
	}

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

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

/* Only Mobile */
@media only screen and (max-width: 768px) {

	h1 {
		font-size: 45px;
	}

	h2 {
		font-size: 35px;
	}

	h3 {
		font-size: 25px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 19px;
	}

	h6 {
		font-size: 17px;
	}

	/* .container-inside {
		padding: 50px 15px;
	}

	.container-inside-2 {
		padding: 0px 15px;
	} */

	.intermission__part {
		font-size: 70px;
	}

	.site-owner__part {
		font-size: 70px;
	}

	.contacts__hero-part h3 {
		font-size: 70px;
	}

	.contacts__hero-part--left {
		left: -50px;
	}

	.contacts__hero-part--right {
		bottom: -100px;
	}

	.interior-slider__content {
		flex-direction: column;
	}

	.interior-slider__btn {
		justify-content: center;
	}

	.intermission__question {
		transform: translate(-50%, 270%);
		font-size: 30px;
	}

	.intermission__person {
		top: 57px;
		right: -54px;
		width: 200px;
	}

	.g-sections {
		padding: 70px 0;
	}

	.owner-hero__part {
		font-size: 230px;
	}

	.project-hero__img {
		height: 40vh;
	}

	.hero-main__content {
		bottom: 30px !important;
	}

	.our-projects__categories {
		display: none;
	}

	/* --------------------------------- */
	/* ------- Service showcase -------- */
	/* --------------------------------- */

	.page-showcase__container {
		flex-direction: column-reverse;
	}

	.page-showcase__content {
		width: 100%;
	}

	.page-showcase__content-txt {
		width: 100%;
	}

	.page-showcase__img {
		width: 100%;
	}

	/* --------------------------------- */
	/* ------------ Footer ------------- */
	/* --------------------------------- */

	.footer__text {
		width: 100%;
	}


	/* --------------------------------- */
	/* ----------- Identyty ------------ */
	/* --------------------------------- */

	.contacts__identity-title {
		font-size: 60px;
	}

	.contacts__identity-info--right {
		right: 0;
		bottom: 0px;
	}

	.contacts__identity-info--left {
		left: 0;
		bottom: 0;
	}

	.contacts__identity-title--left {
		left: 0;
		top: 80px;
	}

	.contacts__identity-title--right {
		right: 0;
		bottom: 70px;
	}


}

/* End Mobile */

/* Only Desktop */
@media only screen and (min-width: 768px) {}

/* End Desktop */


.story-scene {
	/* Pin handles “stick”; native sticky + GSAP pin fights and mis-measures. */
	position: relative;
	z-index: var(--scene-z, 1);
	min-height: 100vh;
	background: #000000;
	border-top: 1px solid rgba(17, 17, 17, 0.06);
}

/* .story-scene + .story-scene {
  margin-top: -100vh;
} */

.story-scene.is-armed {
	overscroll-behavior: none;
}

.story-sticky {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
	/* background: #000000; */
}

.story-slides {
	position: relative;
	flex: 1;
	display: grid;
	place-items: center;
}

.story-slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-items: center;
	justify-items: center;
	text-align: center;
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 10px, 0);
}

.story-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.story-eyebrow {
	margin: 0;
	align-self: start;
	font-size: 0.9rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #e9e4e0cf;
}

.story-title {
	margin: 0;
	max-width: 18ch;
	font-size: clamp(2.4rem, 7vw, 5.5rem);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #e9e4e0;
}

.story-desc {
	margin: 0;
	align-self: end;
	/* max-width: 76ch; */
	max-width: 100ch;
	/* font-size: clamp(0.95rem, 2vw, 1.125rem); */
	font-size: clamp(1.05rem, 2.5vw, 1.3rem);
	color: #e9e4e0cf;
}

.story-progress {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	align-self: stretch;
	width: 100%;
	padding-top: 0.5rem;
	box-sizing: border-box;
}

.story-bar {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	height: 3px;
	border: 0;
	padding: 0;
	border-radius: 999px;
	background: rgb(255 255 255 / 20%);
	cursor: pointer;
}

.story-bar.is-active {
	background: rgb(233 228 224);
}

.story-bar:focus-visible {
	outline: 2px solid rgb(233 228 224);
	outline-offset: 3px;
}

.story-image {

	max-width: 60ch;
}


/* --- Full-viewport hero: small centered image + full-bleed headline, scroll-driven expand --- */
.hero-expand {
	position: relative;
	z-index: 12;
	min-height: 100vh;
	background: #000;
}

.hero-expand__sticky {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}

.hero-expand__frame {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: min(34vw, 360px);
	max-width: min(92vw, 100%);
	aspect-ratio: 3 / 4;
	height: auto;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	will-change: width, height, border-radius;
}

.hero-expand__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-expand__img--secondary {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hero-expand__text-row {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.hero-expand__text {
	margin: 0;
	padding: 0 clamp(0.75rem, 2vw, 1.5rem);
	width: 100%;
	max-width: none;
	font-size: clamp(2rem, 10.5vw, 7.5rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-align: center;
	color: #e9e4e0;
	white-space: nowrap;
	mix-blend-mode: normal;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

@media (max-width: 520px) {
	.hero-expand__text {
		white-space: normal;
	}
}

.hero-expand__project {
	position: absolute;
	left: 50%;
	bottom: clamp(1.5rem, 4vw, 3rem);
	z-index: 4;
	display: grid;
	justify-items: center;
	gap: clamp(0.6rem, 1.6vw, 0.9rem);
	transform: translate3d(-50%, 24px, 0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}


.hero-expand__project-title {
	margin: 0;
	font-size: clamp(1.3rem, 3vw, 2.3rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.tech-brands {
	width: 60px;
}

/* --- First screen: full-bleed photo + one-time zoom-in to natural framing --- */
.hero-main {
	position: relative;
	z-index: 5;
	min-height: calc(100vh - 140px);
	/* min-height: 100dvh; */
	overflow: hidden;
	background: #1a1a18;
}

.hero-main__inner {
	position: relative;
	/* height: min(100vh, 100dvh); */
	/* min-height: 100vh; */
	min-height: calc(100vh - 60px);
	/* min-height: 100dvh; */
}

.hero-main__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-main__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.1);
	transform-origin: center center;
	will-change: transform;
	user-select: none;
	pointer-events: none;
	opacity: 0.8;
}

.hero-main__content {
	position: absolute;
	height: 150px;
	width: 100%;
	bottom: 0px;
	left: 0px;
	padding: 0 30px;
}

.hero-main__social {
	position: absolute;
	/* right: 0; */
	left: 30px;
	/* background: #000000; */
	color: white;
	/* padding: 20px 10px; */
	top: 50%;
	transform: translateY(-50%);
	/* box-shadow: 0 0 11px rgb(0 0 0 / 30%); */
}

.hero-main__title {
	font-weight: 700;
}

.hero-main__descrpt {
	position: absolute;
	bottom: 100px;
	right: 0;
	transform: rotate(270deg);
}

.hero-main__icons {
	padding: 5px 5px;
	background: black;
	border-radius: 50%;
	display: grid;
	margin: 5px 0;
}

.outline-text {
	color: transparent;
	-webkit-text-stroke: 1px #ffffff;
	font-weight: 800;
	letter-spacing: 1px;
	transition: all 0.2s ease-in-out;
}

.outline-text:hover {
	color: white;
}


/* --- Services: pinned 100vh, list + image swap on scroll (GSAP) --- */
.services {
	position: relative;
	z-index: 9;
	min-height: 100vh;
	background-color: var(--accent-color);
	border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.services.is-armed {
	overscroll-behavior: none;
}

.services__sticky {
	position: relative;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	/* background: #e8e8e6; */
}

.services__watermark {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.services__watermark-letter {
	position: absolute;
	bottom: -4vh;
	font-size: clamp(8rem, 42vw, 22rem);
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: rgba(17, 17, 17, 0.045);
	user-select: none;
}

.services__watermark-letter--l {
	left: -2vw;
}

.services__watermark-letter--r {
	right: -1vw;
	top: 0;
}

.services__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(1rem, 3vw, 2.5rem);
	align-items: center;
	height: 100%;
	padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3.5rem);
	max-width: 1400px;
	margin: 0 auto;
}

.services__col--list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* gap: clamp(1.75rem, 4vw, 2.75rem); */
	gap: clamp(0.875rem, 2vw, 1.375rem);
	min-width: 0;
}

.services__nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}

.services__item {
	margin: 0;
	padding: 0.35rem 0.85rem;
	border: 0;
	border-radius: 2px;
	background: transparent;
	font: inherit;
	font-size: clamp(1.35rem, 3.2vw, 2.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-align: left;
	color: #2a2a2a;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.services__item:hover {
	color: #111;
}

.services__item.is-active {
	background: #111;
	color: #fff;
}

.services__item:focus-visible {
	outline: 2px solid rgba(17, 17, 17, 0.45);
	outline-offset: 3px;
}

.services__counter {
	margin: 0;
	font-size: clamp(0.8rem, 1.4vw, 0.95rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(17, 17, 17, 0.45);
}

.services__counter-current,
.services__counter-sep,
.services__counter-total {
	color: #111;
}


.services__descriptions {
	position: relative;
	width: 100%;
	/* max-width: 40ch; */
	/* min-height: clamp(5.5em, 14vh, 8.5em); */
}

.services__desc {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0;
	/* font-size: clamp(0.9rem, 1.5vw, 1rem); */
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 500;
	/* line-height: 1.45; */
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgba(17, 17, 17, 0.72);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 10px, 0);
}

.services__desc.is-active {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.services__col--visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
}

.services__frames {
	position: relative;
	width: min(100%, 420px);
	aspect-ratio: 3 / 4;
	max-height: min(72vh, 640px);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.services__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 10px, 0);
}

.services__img.is-active {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.category-rows {
	position: relative;
	z-index: 12;
	/* background: #e9e4e0; */
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.category-rows__inner {
	width: min(1380px, calc(100% - 2rem));
	margin: 0 auto;
	padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.category-rows__item {
	border-top: 1px solid #5C5C5C;
}

.category-rows__item:last-child {
	border-bottom: none;
}

.category-rows__item:first-child {
	border-top: none !important;
}

.category-first_row {
	border-top: none !important;
}

.category-rows__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
	align-items: center;
	gap: clamp(0.7rem, 1.8vw, 1.4rem);
	min-height: clamp(80px, 11vw, 108px);
	padding: clamp(0.75rem, 1.8vw, 1.15rem) 0.15rem;
}

.category-rows__title {
	margin: 0;
	font-size: clamp(1.5rem, 4.5vw, 3.55rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: #e9e4e0cf;
	transition: color 0.28s ease;
}

.category-rows__meta {
	display: grid;
	justify-items: start;
	gap: 0.6rem;
	opacity: 1;
	transform: none;
	transition: none;
	pointer-events: auto;
}

.category-rows__desc {
	margin: 0;
	font-size: clamp(1.05rem, 2.5vw, 1.3rem);
	line-height: 1;
	color: #e9e4e0cf;
}

.category-rows__btn {
	position: absolute;
	right: clamp(0.8rem, 2vw, 1.25rem);
	bottom: clamp(0.8rem, 2vw, 1.25rem);
	z-index: 2;
	background: #e9e4e0cf;
	color: black;
	padding: 0 10px;
	font-weight: 700;
}


.category-rows__media {
	position: relative;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.52s cubic-bezier(0.22, 0.61, 0.36, 1), margin-bottom 0.52s ease;
	margin-bottom: 0;
}

.category-rows__img {
	display: block;
	width: 100%;
	height: clamp(220px, 36vw, 420px);
	object-fit: cover;
	border-radius: 2px;
}

.category-rows__item.is-active .category-rows__title,
.category-rows__item:hover .category-rows__title,
.category-rows__item:focus-within .category-rows__title {
	/* color: rgba(17, 17, 17, 0.96); */
	color: #e9e4e0;
}

.category-rows__item.is-active .category-rows__meta,
.category-rows__item:hover .category-rows__meta,
.category-rows__item:focus-within .category-rows__meta {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.category-rows__item.is-active .category-rows__media,
.category-rows__item:hover .category-rows__media,
.category-rows__item:focus-within .category-rows__media {
	max-height: 460px;
	margin-bottom: clamp(0.6rem, 1.6vw, 1rem);
}

.category-rows__btn:hover {
	background: #111;
	color: #e9e4e0cf;
}

@media (max-width: 980px) {
	.category-rows__head {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		padding: clamp(1.5rem, 3.6vw, 2.3rem) 0.3rem;
	}

	.category-rows__meta {
		grid-column: 1 / -1;
		width: min(62ch, 100%);
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.category-rows__title {
		/* color: rgba(17, 17, 17, 0.92); */
	}

	.gallery__item:not(:first-child) {
		padding: 0px;
	}

	.gallery__item {
		display: flex;
		padding-right: 20px;
		flex-direction: column-reverse;
	}

	.gallery__item:not(:last-child) {
		border-right: none;
		padding: 0px;
	}

	.page__hero-title h1 {}

}

@media (max-width: 620px) {
	.category-rows__inner {
		width: min(100%, calc(100% - 1rem));
	}

	.category-rows__img {
		height: clamp(180px, 56vw, 280px);
	}

	.category-rows__btn {
		right: 0.6rem;
		bottom: 0.6rem;
		min-height: 2.2rem;
		padding: 0.5rem 0.85rem;
		font-size: 0.88rem;
	}

	.owner-hero {
		height: 70vh;
	}

	.mission p {
		font-size: 25px;
		padding: 0 20px;
	}
}

@media (max-width: 820px) {
	.services__grid {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(0, 1fr) auto;
		align-items: stretch;
		padding-bottom: clamp(1rem, 3vw, 1.5rem);
	}

	.services__col--visual {
		order: -1;
		justify-content: center;
		padding-top: 0.5rem;
	}

	.services__frames {
		/* width: min(100%, 320px); */
		max-height: min(38vh, 420px);
	}

	.services__col--list {
		justify-content: flex-end;
		gap: 1rem;
	}

	.services__item {
		font-size: clamp(1.05rem, 4.5vw, 1.65rem);
	}

	.services__descriptions {

		/* min-height: clamp(5.5em, 14vh, 8.5em); */
		min-height: clamp(4.5em, 12vh, 7em);
	}

	.hero-main__descrpt {
		display: none;
	}
}


/* BEFORE CTA SECTION */
.before-cta {
	position: relative;
	z-index: 20;
	min-height: 100vh;
	background: #111;
}

.before-cta__sticky {
	position: relative;
	height: 100vh;
	height: 100dvh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: #000000;
}

.before-cta__reveal {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	text-align: center;
	padding: 1rem;
}

.before-cta__watermark {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0;
	transform: translate(-50%, -50%);
	font-size: clamp(3rem, 16vw, 14rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.04);
	white-space: nowrap;
	user-select: none;
}

.before-cta__reveal-title {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #e9e4e0;
	font-size: clamp(1.8rem, 5.6vw, 5.3rem);
	line-height: 0.95;
	letter-spacing: -0.01em;
	text-wrap: balance;
	font-weight: 700;
}

.before-cta__panel {
	position: relative;
	z-index: 2;
	min-width: 0;
	min-height: 0;
}

.before-cta__panel--media {
	background: #161616;
	display: grid;
	align-content: center;
	gap: clamp(0.9rem, 2.2vw, 1.5rem);
	padding: clamp(1.4rem, 4vw, 3.25rem);
	/* backdrop-filter: blur(19px); */
	background: black;
}

.before-cta__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.before-cta__panel--info {
	/* display: grid;
  align-content: center;
  gap: clamp(0.9rem, 2.2vw, 1.5rem);
  padding: clamp(1.4rem, 4vw, 3.25rem); */
	/* backdrop-filter: blur(19px); */
	background: black;
}

.before-cta__eyebrow {
	margin: 0;
	font-size: 0.74rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #e9e4e0cf;
}

.before-cta__title {
	margin: 0;
	font-size: clamp(1.55rem, 3.4vw, 3.1rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: #e9e4e0;
}

.before-cta__desc {
	margin: 0;
	max-width: 44ch;
	color: #e9e4e0cf;
}

@media (max-width: 880px) {
	.before-cta__sticky {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
	}

	.before-cta__panel--media {
		/* min-height: 54vh; */
		padding-left: clamp(12px, 2vw, 24px);
		padding-right: clamp(12px, 2vw, 24px);
	}

	.before-cta__panel--info {
		min-height: 46vh;
	}
}

.before-cta__badges {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: clamp(0.65rem, 2.2vw, 1.75rem);
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.2rem 0 0.35rem;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
}

.before-cta__badges::-webkit-scrollbar {
	height: 4px;
}

.before-cta__badges::-webkit-scrollbar-thumb {
	background: rgba(17, 17, 17, 0.18);
	border-radius: 999px;
}


/* AWARDS RECOGNITION */
.awards-recognition {
	position: relative;
	z-index: 20;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
}

.awards-recognition__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	gap: clamp(0.75rem, 2vw, 1.5rem);
	margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	align-items: center;
}

.awards-recognition__year {
	font-size: clamp(2.1rem, 3.3vw, 2.55rem);
	font-weight: 600;
	color: rgb(255 255 255 / 34%);
	padding-top: 0.35em;
}

.awards-recognition__year--start {
	justify-self: start;
}

.awards-recognition__year--end {
	justify-self: end;
}

.awards-recognition__title {
	margin: 0;
	text-align: center;
	font-size: clamp(1.75rem, 5vw, 4.25rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.awards-recognition__title-line {
	display: block;
	font-size: clamp(2.4rem, 7vw, 5.5rem);
	line-height: 0.95;
}

.awards-recognition__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1rem, 3vw, 2.5rem);
	align-items: start;
}

.awards-recognition__visual {
	position: sticky;
	top: clamp(0.75rem, 2vh, 1.25rem);
	min-height: min(72vh, 640px);
	background: #0a0a0a;
	overflow: hidden;
}

.awards-recognition__preview {
	display: block;
	width: 100%;
	height: 100%;
	min-height: min(72vh, 640px);
	object-fit: cover;
	object-position: center;
}

.awards-recognition__list-col {
	min-width: 0;
}

.awards-recognition__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.awards-recognition__row {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(0.5rem, 1.5vw, 1rem);
	align-items: center;
	padding: 0;
	margin: 0;
	cursor: default;
	outline: none;
	transition: opacity 0.28s ease;
	/* display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(0.5rem, 1.5vw, 1rem);
  align-items: center; */
	/* padding: 0.12em 0; */
	/* margin: 0;
  cursor: default;
  outline: none;
  transition: opacity 0.28s ease; */
}

.awards-recognition__list:has(.awards-recognition__row:is(:hover, :focus-within)) .awards-recognition__row:not(:is(:hover, :focus-within)) {
	opacity: 0.32;
}

.awards-recognition__competition,
.awards-recognition__project {
	/* font-size: clamp(0.62rem, 1.35vw, 0.82rem); */
	font-size: clamp(0.78rem, 1.69vw, 1.03rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.42);
	transition: color 0.28s ease;
}

.awards-recognition__project-cell {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
	text-align: right;
	/* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.45rem, 1.2vw, 0.85rem);
  min-width: 0;
  text-align: right; */
}

.awards-recognition__project {
	margin: 0;
}

.awards-recognition__row:is(:hover, :focus-within) .awards-recognition__competition,
.awards-recognition__row:is(:hover, :focus-within) .awards-recognition__project {
	color: rgba(255, 255, 255, 0.98);
}

.awards-recognition__logo {
	position: absolute;
	right: 70px;
	top: 50%;
	display: block;
	width: auto;
	height: clamp(28px, 4.2vw, 48px);
	max-width: min(36vw, 200px);
	object-fit: contain;
	object-position: right center;
	opacity: 0;
	transform: translate(6px, -50%);
	transition:
		opacity 0.28s ease,
		transform 0.28s ease;
	pointer-events: none;
	/* flex-shrink: 0;
  display: block;
  width: auto;
  height: clamp(14px, 2.2vw, 24px);
  height: clamp(28px, 4.2vw, 48px);
  max-width: min(22vw, 110px);
  object-fit: contain;
  object-position: right center;
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  pointer-events: none; */
}

.awards-recognition__row:is(:hover, :focus-within) .awards-recognition__logo {
	opacity: 1;
	transform: translateX(0);
}

.awards-recognition__row:focus-visible {
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

@media (max-width: 880px) {
	.awards-recognition__head {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		row-gap: 0.65rem;
	}

	.awards-recognition__title {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.awards-recognition__year--start {
		grid-column: 1;
		grid-row: 2;
	}

	.awards-recognition__year--end {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
	}

	.awards-recognition__body {
		grid-template-columns: 1fr;
	}

	.awards-recognition__visual {
		position: relative;
		top: auto;
		min-height: 42vh;
	}

	.awards-recognition__preview {
		min-height: 42vh;
	}

	.awards-recognition__row {
		grid-template-columns: 1fr 1fr;
		gap: clamp(0.35rem, 2vw, 0.65rem);
	}

	.awards-recognition__competition,
	.awards-recognition__project {
		font-size: clamp(0.55rem, 2.8vw, 0.72rem);
	}

	.awards-recognition__logo {
		height: clamp(12px, 3.2vw, 18px);
	}
}


/* LEFTSIDE CATEGORY PANNE */

.category-hover__panel {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 40;
	width: 20%;
	min-width: 220px;
	height: 100vh;
	height: 100dvh;
	padding: clamp(1rem, 2vw, 1.5rem);
	background: rgb(233, 228, 224);
	border-right: 1px solid rgba(17, 17, 17, 0.12);
	transform: translateX(-100%);
	transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
	align-items: baseline;
}

[data-category-hover].is-open .category-hover__panel {
	transform: translateX(0);
}

.category-hover__panel-title {
	margin: 0;
	font-size: clamp(1.7rem, 2.8vw, 2.5rem);
	line-height: 0.88;
	font-weight: 900;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	overflow: hidden;
	color: rgba(17, 17, 17, 0.74);
	font-size: 55px;
	padding: 20px 0;
}

.category-hover__panel-desc {
	margin: 0;
	font-size: clamp(0.74rem, 0.95vw, 0.84rem);
	line-height: 1.45;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(17, 17, 17, 0.74);
}

@media (max-width: 980px) {
	.category-hover__panel {
		width: min(44%, 280px);
	}
}

@media (max-width: 700px) {
	.category-hover__panel {
		width: 100%;
		min-width: 0;
		height: auto;
		min-height: 42vh;
		position: relative;
		transform: translateY(-100%);
		border-right: 0;
		border-bottom: 1px solid rgba(17, 17, 17, 0.12);
	}

	[data-category-hover].is-open .category-hover__panel {
		transform: translateY(0);
	}

	.category-hover__panel-title {
		writing-mode: horizontal-tb;
		transform: none;
		max-height: none;
		font-size: clamp(1.4rem, 8vw, 2rem);
		line-height: 0.98;
	}
}

/* .category-hover__panel { transform: translateX(0) !important; } */

/* scroll-write Sections */


.scroll-write {
	position: relative;
	z-index: 30;
	min-height: 100vh;
	min-height: 100dvh;
	display: grid;
	place-items: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-write__inner {
	width: min(980px, 100%);
	text-align: center;
	display: grid;
	justify-items: center;
	gap: clamp(1.2rem, 3.2vw, 2.8rem);
}

.scroll-write__eyebrow {
	margin: 0;
	font-size: clamp(0.52rem, 0.8vw, 0.62rem);
	letter-spacing: 0.45em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.62);
	font-weight: 600;
	margin-bottom: clamp(4.5rem, 13vh, 7rem);
}

.scroll-write__title {
	margin: 0;
	font-size: clamp(2.4rem, 7vw, 5.5rem);
	line-height: 0.94;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: #4a4a4a;
	text-wrap: balance;
}

.scroll-write__title-line {
	font: inherit;
	letter-spacing: inherit;
}

.scroll-write__char--title {
	font: inherit;
	letter-spacing: inherit;
}

.scroll-write__desc {
	margin: clamp(2.3rem, 9vh, 5.2rem) 0 0;
	max-width: min(100ch, 94%);
	font-size: clamp(0.98rem, 1.35vw, 1.32rem);
	line-height: 1.35;
	font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
	color: rgba(255, 255, 255, 0.9);
}

.scroll-write__char {
	color: #4a4a4a;
}

/* how-it-works Page Showcase*/

.how-it-works {
	position: relative;
	z-index: 26;
	min-height: 100vh;
	min-height: 100dvh;
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.how-it-works__inner {
	height: 100vh;
	height: 100dvh;
	display: grid;
	grid-template-columns: 30% 70%;
	overflow: hidden;
}

.how-it-works__col {
	min-width: 0;
	min-height: 0;
}

.how-it-works__col--accordion {
	background: #000;
	color: rgba(255, 255, 255, 0.92);
	padding: clamp(1.4rem, 3vw, 2.2rem);
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.how-it-works__accordion {
	margin-top: 0.15rem;
	display: grid;
	gap: 0.75rem;
}

.how-it-works__item {
	appearance: none;
	border: 0;
	padding: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	font: inherit;
	cursor: pointer;
	display: grid;
	gap: 0.35rem;
}

.how-it-works__item-title {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.1;
	color: rgb(255 255 255 / 38%);
	transition: color 0.2s ease;
}

.how-it-works__item-text {
	display: block;
	font-size: 0.9rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.78);
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translate3d(0, 6px, 0);
	transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
	will-change: max-height, opacity, transform;
}

.how-it-works__item-text p {
	margin: 0.4rem 0 0;
}

.how-it-works__item-text p:first-child {
	margin-top: 0;
}

.how-it-works__item.is-active .how-it-works__item-title {
	color: #e9e4e0;
}

.how-it-works__item.is-active .how-it-works__item-text {
	max-height: 16em;
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.how-it-works__item:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.35);
	outline-offset: 4px;
}

.how-it-works__footer {
	margin-top: auto;

}

.how-it-works__brand {
	margin: 0 0 10px 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.how-it-works__col--media {
	background: #111;
}

.how-it-works__media {
	position: relative;
	width: 100%;
	height: 100%;
}

.how-it-works__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 0.45s ease;
}

.how-it-works__img.is-active {
	opacity: 1;
}

@media (max-width: 980px) {
	.how-it-works__inner {
		grid-template-columns: 1fr;
		grid-template-rows: 54vh 46vh;
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
	}

	.how-it-works__col--media {
		order: -1;
	}
}

@media (prefers-reduced-motion: reduce) {

	.how-it-works__item-text,
	.how-it-works__img {
		transition: none;
	}
}

/* Text-first hero: headline only, then collage under text, then one full image + CTA  */
.hero-text-collage {
	position: relative;
	z-index: 13;
	min-height: 100vh;
	background: #000;
}

.hero-text-collage__sticky {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}

.hero-text-collage__collage {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.hero-text-collage__piece {
	position: absolute;
	left: var(--tx);
	top: var(--ty);
	width: var(--tw);
	height: var(--th);
	/* transform: rotate(var(--rot)); */
	overflow: hidden;
	/* border-radius: 5px; */
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
	will-change: transform;
}

.hero-text-collage__piece img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(1) contrast(1.06);
}

.hero-text-collage__single {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hero-text-collage__single-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-text-collage__text-row {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.hero-text-collage__text {
	margin: 0;
	padding: 0 clamp(0.75rem, 2vw, 1.5rem);
	width: 100%;
	max-width: none;
	font-size: clamp(2rem, 10.5vw, 7.5rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-align: center;
	color: #e9e4e0;
	white-space: nowrap;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

.hero-text-collage__project {
	position: absolute;
	left: 50%;
	bottom: clamp(1.5rem, 4vw, 3rem);
	z-index: 4;
	display: grid;
	justify-items: center;
	gap: clamp(0.6rem, 1.6vw, 0.9rem);
	transform: translate3d(-50%, 24px, 0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hero-text-collage__project-title {
	margin: 0;
	font-size: clamp(1.3rem, 3vw, 2.3rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-text-collage__project-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.72rem 1.45rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.hero-text-collage__project-btn:hover {
	background: #fff;
	color: #111;
	transform: translateY(-1px);
}

.hero-text-collage__project-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 3px;
}

@media (max-width: 520px) {
	.hero-text-collage__text {
		white-space: normal;
	}

	.hero-text-collage__project {
		bottom: clamp(1.25rem, 6vw, 2rem);
	}
}




/**
 * Collage step expand — колаж + 3-step scroll/CTA.
 */

.collage-step-expand {
	position: relative;
	z-index: 12;
	min-height: 100vh;
	background: #000;
}

.collage-step-expand__sticky {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}

.collage-step-expand__collage {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.collage-step-expand__piece {
	position: absolute;
	left: var(--tx);
	top: var(--ty);
	width: var(--tw);
	height: var(--th);
	transform: rotate(var(--rot));
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
	will-change: transform;
}

.collage-step-expand__piece img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* filter: grayscale(1) contrast(1.06); */
}

.collage-step-expand__frame {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	will-change: width, height;
}

.collage-step-expand__img--full {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center;
}

.collage-step-expand__dim {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: #000;
	opacity: 0;
	pointer-events: none;
}

.collage-step-expand__text-row {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.collage-step-expand__headline {
	margin: 0;
	padding: 0 clamp(0.75rem, 2vw, 1.5rem);
	width: 100%;
	max-width: none;
	font-size: clamp(2rem, 10.5vw, 7.5rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

.collage-step-expand__scroll-stage {
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	justify-content: center;
	padding: 0 clamp(1rem, 4vw, 3rem);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.collage-step-expand__scroll-window {
	position: relative;
	width: min(100%, 720px);
	height: 100%;
	overflow: hidden;
	/* -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  ); */
	/* mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  ); */
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 45%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 45%, transparent 100%);
}

.collage-step-expand__scroll-content {
	will-change: transform;
	text-align: center;
}

.collage-step-expand__scroll-title {
	margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
	text-align: center;
	/* font-size: clamp(1.35rem, 3.2vw, 2.4rem); */
	/* font-size: clamp(3rem, 8.4vw, 6.2rem); */
	font-size: clamp(2.4rem, 7vw, 5.5rem);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #e9e4e0;
	;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.collage-step-expand__scroll-body {
	/* margin: 0 0 clamp(0.85rem, 2vw, 1.25rem); */
	text-align: center;
	/* font-size: clamp(1.05rem, 2.5vw, 1.3rem); */
	font-size: clamp(1.05rem, 2.5vw, 2.5rem);
	font-weight: 400;
	color: #fff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	max-width: 41ch;
	margin: 10px auto;
}

.collage-step-expand__scroll-body:last-child {
	margin-bottom: 0;
}

.collage-step-expand__scroll-block {
	opacity: 0;
}

.collage-step-expand__cta {
	position: absolute;
	left: 50%;
	bottom: clamp(1.5rem, 4vw, 3rem);
	z-index: 6;
	display: grid;
	justify-items: center;
	gap: clamp(0.6rem, 1.6vw, 0.9rem);
	transform: translate3d(-50%, 24px, 0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.collage-step-expand__cta-title {
	margin: 0;
	font-size: clamp(1.3rem, 3vw, 2.3rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	text-align: center;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.collage-step-expand__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.72rem 1.45rem;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.collage-step-expand__cta-btn:hover {
	background: #fff;
	color: #111;
	transform: translateY(-1px);
}

.collage-step-expand__cta-btn:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 3px;
}

@media (max-width: 520px) {
	.collage-step-expand__headline {
		white-space: normal;
	}

	.collage-step-expand__scroll-stage {
		top: 18%;
		bottom: 18%;
		padding: 0 clamp(0.75rem, 5vw, 1.25rem);
	}

	.collage-step-expand__cta {
		bottom: clamp(1.25rem, 6vw, 2rem);
	}
}


.hero-pages {
  display: grid;
  grid-template-columns: var(--panel-width) 1fr;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
}

/* ─── Left panel ─── */
.hero-pages__panel {
  position: relative;
  z-index: 10;
  color: var(--white);
  /* background-color: var(--panel-bg); */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath d='M0 200 Q100 180 200 200 T400 200 M0 260 Q120 240 240 260 T400 260 M0 140 Q80 120 160 140 T320 140 M40 0 Q60 80 40 160 T40 320 M120 40 Q140 120 120 200 T120 360 M200 60 Q220 140 200 220 T200 380 M280 20 Q300 100 280 180 T280 340 M360 80 Q380 160 360 240 T360 400' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  overflow: hidden;
}

.hero-pages__panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.75rem 3rem 2.5rem 3.25rem;
}

.hero-pages__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.hero-pages__title {
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
  color: var(--white);
}

.hero-pages__title-line {
  display: block;
  overflow: hidden;
}

.hero-pages__title-line span {
  display: inline-block;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 700;
}

.hero-pages__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 240px;
  padding: 0.9rem 1.1rem 0.9rem 1.25rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.hero-pages__cta span{
	 color: var(--black);
}

.hero-pages.is-animating .hero-pages__cta {
  opacity: 0;
}

.hero-pages__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero-pages__cta-arrow {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.hero-pages__cta-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--black);
}

.hero-pages__cta-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: -2px;
}

.hero-pages__panel-footer {
  display: flex;
  align-items: flex-end;
}

.hero-pages__social {
  display: flex;
  gap: 1.1rem;
}

.hero-pages.is-animating .hero-pages__social {
  opacity: 0;
}

.hero-pages__social-link {
  color: var(--gray-300);
  transition: color 0.3s;
}

.hero-pages__social-link:hover {
  color: var(--white);
}

.hero-pages__social-link svg {
  width: 15px;
  height: 15px;
}

/* ─── Right visual area ─── */
.hero-pages__visual {
  position: relative;
  overflow: hidden;
}

.hero-pages__image {
  position: absolute;
  inset: 0;
}

.hero-pages__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

/* Bottom glass info bar */
.hero-pages__info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 3rem 1.85rem;
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-pages.is-animating .hero-pages__info-bar {
  transform: translateY(100%);
}

.hero-pages.is-animating .hero-pages__info-text,
.hero-pages.is-animating .hero-pages__info-meta {
  opacity: 0;
}

.hero-pages__info-left {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  max-width: 480px;
  align-items: center;
}

.hero-pages__info-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.hero-pages__info-line {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-pages__info-text {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.hero-pages__info-meta {
  display: flex;
  gap: 3.5rem;
  padding-bottom: 0.15rem;
  margin-left: auto;
  flex-shrink: 0;
}

.hero-pages__meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-pages__meta-label {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gray-500);
  text-transform: lowercase;
}

.hero-pages__meta-value {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: lowercase;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-pages__info-meta {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-pages {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
    height: auto;
    min-height: 100dvh;
  }

  .hero-pages__panel-inner {
    padding: 1.75rem 1.5rem;
    min-height: 45vh;
  }

  .hero-pages__visual {
    min-height: 55vh;
  }

  .hero-pages__info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .hero-pages__info-left {
    max-width: 100%;
  }

  .hero-pages__info-meta {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-pages__title {
    font-size: 1.85rem;
  }

  .hero-pages__cta {
    min-width: 0;
    width: 100%;
  }
}