/*
	Theme Name: Carls
	Author: Carls
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

:root {
	/* Brand Colors */
	--color-gold: #FFDE7B;
	--color-green: #0E2A24;
	--color-white: #ffffff;
	/* Typography */
	--font-body: "Plus Jakarta Sans", sans-serif;
	--font-heading: "Libre Baskerville", Georgia, serif;
	--header-pad-y: 24px;
	--header-pad-y-scrolled: 16px;
	--section-gap: 64px;
	/* marquee */
	--marquee-gap: clamp(10px, 2vw, 20px);
  	--marquee-speed: 90s;
  	--marquee-height: clamp(140px, 18vw, 260px);
}

html {
	font-size: 100%;
	scroll-padding-top: 96px; /* matches .header height on < 960px */
}

@media only screen and (min-width: 960px) {
  html {
    scroll-padding-top: 240px; /* matches .header height on >= 960px */
  }
}

body {
	font-family: "Plus Jakarta Sans";
	font-size: 14px;
	line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Libre Baskerville", Georgia, serif;
}

.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	text-decoration: none;
}


a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

input:focus {
	outline: 0;
	border: 1px solid #04A4CC;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

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

.btn {
	--border-size: 1px;
	--corner-radius: 10px;
	--background-color: transparent;
	--border-color: var(--color-green);
	--text-color: var(--color-green);
	--br: calc(var(--corner-radius) + var(--border-size));
	--mr: var(--corner-radius);
	--border-bg:
		radial-gradient(circle at var(--br) var(--br),
			var(--border-color) calc(var(--br) - 1px),
			#0000 var(--br)) calc(var(--br) * -1) calc(var(--br) * -1) border-box;
	--mask:
		radial-gradient(circle at var(--mr) var(--mr),
			#0000 calc(var(--mr) - 1px),
			#000 var(--mr)) calc(var(--mr) * -1) calc(var(--mr) * -1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 25px 32px;
	border: var(--border-size) solid var(--border-color);
	background: var(--border-bg);
	background-color: var(--background-color);
	-webkit-mask: var(--mask);
	mask: var(--mask);
	color: var(--text-color);
	text-decoration: none;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	line-height: 1;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
	white-space: nowrap;
}

.header-actions .btn {
	padding: 16px 24px;
}

/* WHITE */
.btn--white {
	--background-color: var(--color-white);
	--border-color: var(--color-white);
	--text-color: var(--color-green);
}

.btn--white:hover {
	--background-color: var(--color-gold);
	--border-color: var(--color-gold);
	--text-color: var(--color-green);
}

/* OUTLINE WHITE */
.btn--outline-white {
	--background-color: transparent;
	--border-color: var(--color-white);
	--text-color: var(--color-white);
}

.btn--outline-white:hover {
	--background-color: var(--color-white);
	--border-color: var(--color-white);
	--text-color: var(--color-green);
}

/* GREEN */
.btn--green {
	--background-color: var(--color-green);
	--border-color: var(--color-green);
	--text-color: var(--color-gold);
}

.btn--green:hover {
	--background-color: var(--color-gold);
	--border-color: var(--color-gold);
	--text-color: var(--color-green);
}

/* OUTLINE GREEN */
.btn--outline-green {
	--background-color: transparent;
	--border-color: var(--color-green);
	--text-color: var(--color-green);
}

.btn--outline-green:hover {
	--background-color: var(--color-green);
	--border-color: var(--color-green);
	--text-color: var(--color-white);
}

/* GOLD */
.btn--gold {
	--background-color: var(--color-gold);
	--border-color: var(--color-gold);
	--text-color: var(--color-green);
}

.btn--gold:hover {
	--background-color: #f3d36f;
	--border-color: #f3d36f;
}

/* btn icon */
.btn--with-icon {
	gap: 8px;
	max-width: 138px;
}

.mobile-menu__body .btn--with-icon{
	max-width: unset;
}

.btn__icon {
	width: 12px;
	height: 12px;
	-webkit-mask: url("/wp-content/uploads/2026/02/phone.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/phone.svg") no-repeat center / contain;
	background-color: var(--btn-icon-color, currentColor);
	flex: 0 0 auto;
}

.header:not(.is-scrolled) .btn--outline-white {
	--btn-icon-color: var(--color-white);
}

.header .btn--with-icon:hover,
.header.is-scrolled .btn--outline-green {
	--btn-icon-color: var(--color-green);
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.wrapper {
	max-width: 1368px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

.blog_wrapper{
	max-width: 924px;
	margin: 0 auto;
	padding: 80px 24px;
}

.wrapper__inner {
	max-width: 1096px;
	margin: 0 auto;
}

.subpage__wrapper{
	max-width: 1144px;
	padding: 80px 24px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	background: transparent;
	color: #fff;
	padding-top: var(--header-pad-y);
	padding-bottom: var(--header-pad-y);
	padding: 0 24px;
	height: 96px;
	border-bottom: 1px solid transparent;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease, height .25s ease;
}

.header>.flex {
	width: 100%;
}

.header a {
	text-decoration: none;
}

.logo--black {
	display: none;
}

.logo--white {
	display: inline-block;
}

.header .nav>ul>li>a {
	color: #fff;
}

.header.is-scrolled {
	height: 80px;
	background: #fff;
	color: var(--green);
	border-color: rgba(0, 0, 0, .10);
}

.header.is-scrolled .LangSwitch-link,
.header.is-scrolled .nav>ul>li>a {
	color: var(--green);
}

.header.is-scrolled .LangSwitch:before{
	background: var(--color-green);
}

.header.is-scrolled .logo--white {
	display: none;
}

.header.is-scrolled .logo--black {
	display: inline-block;
}

.header-right {
	display: none;
}

.textImage__image {
	width: 100%;
}

.textImage__image > img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	vertical-align: bottom;
}

.nav>ul {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav>ul>li {
	position: relative;
}

.nav>ul>li>a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 20%;
	text-transform: uppercase;
	line-height: 100%;
	cursor: pointer;
}

.nav .menu-item-has-children>a::after {
	content: "";
	width: 12px;
	height: 8px;
	display: inline-block;
	margin-left: 6px;
	-webkit-mask: url("/wp-content/uploads/2026/02/arrow.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/arrow.svg") no-repeat center / contain;
	background-color: #fff;
	opacity: .9;
	transition: transform .2s ease, background-color .2s ease;
}

.header.is-scrolled .nav .menu-item-has-children>a::after {
	background-color: #0E2A24;
}

.nav .menu-item-has-children.is-open>a::after {
	transform: rotate(-180deg);
}

.nav .menu-item-has-children {
	position: static;
}

.nav .navWrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 1px);
	background: #fff;
	display: none;
	padding: 40px;
	z-index: 1001;
	border-radius: 0;
}

.nav .menu-item-has-children.is-open>.navWrapper {
	display: block;
}

.nav .sub-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	max-width: 1321px;
	margin: 0 auto;
	padding: 0;
	row-gap: 40px;
}

.nav .menu-item-has-children .sub-menu>li {
	position: relative;
	flex: 1;
	padding: 0;
}

.nav .menu-item-has-children .sub-menu>li>a {
	display: flex;
	gap: 16px;
	align-items: center;
	min-width: 344px;
}

.menuItem_image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--color-green);
	background: transparent;
	transition: background-color .2s ease, border-color .2s ease;
}

.mobile-menu .menuIcon,
.nav .menu-item-has-children .sub-menu .menuIcon {
	width: 32px;
	height: 32px;
	background-color: var(--color-green);
	-webkit-mask: var(--icon) no-repeat center / contain;
	mask: var(--icon) no-repeat center / contain;
	transition: background-color .2s ease;
}

.mobile-menu .sub-menu>li>a:hover .menuItem_image,
.nav .sub-menu>li>a:hover .menuItem_image {
	background: var(--color-green);
	border-color: var(--color-green);
}

.mobile-menu .sub-menu>li>a:hover .menuIcon,
.nav .sub-menu>li>a:hover .menuIcon {
	background-color: var(--color-gold);
}

.nav .menu-item-has-children .sub-menu a>span {
	display: block;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: 16px;
	line-height: 100%;
	font-weight: 700;
	letter-spacing: -4%;
	color: #0E2A24;
}

.nav .menu-item-has-children .sub-menu a>span span {
	display: block;
	font-family: "Plus Jakarta Sans";
	font-size: 12px;
	line-height: 140%;
	font-weight: 400;
	opacity: .6;
	margin-top: 8px;
}

.menu-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
	z-index: 999;
}

.menu-backdrop.is-active {
	opacity: 1;
	visibility: visible;
}

.header-actions {
	gap: 16px;
}

/* MOBILE TOGGLE */
.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	line-height: 0;
	cursor: pointer;
	color: #fff;
	padding: 0;
}

.header.is-scrolled .mobile-menu-toggle {
	color: var(--color-green);
}

.mobile-menu-icon {
	width: 24px;
	height: 24px;
	display: block;
	background-color: currentColor;
	-webkit-mask: url("/wp-content/uploads/2026/02/hamburger.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/hamburger.svg") no-repeat center / contain;
}

@media (max-width:959px) {
	.header-right {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

/* MOBILE MENU PANEL */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(393px, 92vw);
	background: #fff;
	z-index: 1200;
	transform: translateX(100%);
	transition: transform .25s ease;
	display: flex;
	flex-direction: column;
}

.mobile-menu.is-open {
	transform: translateX(0);
}

.mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
}

.mobile-menu__logo img {
	display: block;
	max-width: 86px;
	height: auto;
}

.mobile-menu-close {
	border: 0;
	background: transparent;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.mobile-menu__body {
	padding: 24px;
	overflow: auto;
}

body.is-mobile-menu-open {
	overflow: hidden;
}

/* MOBILE NAV */
.mobile-menu .mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu .mobile-nav>ul>li>a {
	display: flex;
	align-items: center;
	color: var(--color-green);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 20%;
	text-transform: uppercase;
	line-height: 1;
	border-bottom: 1px solid rgba(0, 0, 0, .10);
	padding: 16px 0;
}

.mobile-menu .mobile-nav>ul>li:last-child>a {
	border: none;
}

.mobile-menu .mobile-nav>ul>li:first-child>a {
	padding-top: 0;
	padding-bottom: 12px;
}

/* MOBILE ACCORDION ARROW */
.mobile-menu .mobile-nav .menu-item-has-children>a {
	position: relative;
	padding-right: 24px;
}

.mobile-menu .mobile-nav .menu-item-has-children>a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 14px;
	height: 14px;
	transform: translateY(-50%);
	background-color: var(--color-green);
	-webkit-mask: url("/wp-content/uploads/2026/02/arrow_right.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/arrow_right.svg") no-repeat center / contain;
	transition: transform .2s ease;
}

.mobile-menu .mobile-nav .menu-item-has-children.is-open>a::after {
	transform: translateY(-50%) rotate(90deg);
}

.mobile-menu .mobile-nav .menu-item-has-children.is-fixed-open>a {
	padding-right: 0;
}

.mobile-menu .mobile-nav .menu-item-has-children.is-fixed-open>a::after {
	display: none;
}

.mobile-menu .mobile-nav .navWrapper {
	display: none;
	padding: 32px 0;
}

.mobile-menu .mobile-nav .menu-item-has-children.is-open>.navWrapper {
	display: block;
}

.mobile-menu .mobile-nav .sub-menu {
	margin: 0;
	padding: 0;
	gap: 24px;
	display: flex;
	flex-direction: column;
}

.mobile-menu .mobile-nav .sub-menu>li>a {
	display: flex;
	gap: 16px;
	align-items: center;
	color: var(--color-green);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	font-size: 14px;
}

.mobile-menu .menuItem_image {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
}

.mobile-menu .sub-menu a>span {
	display: block;
	font-family: var(--font-heading);
	font-size: 14px;
	line-height: 100%;
	font-weight: 700;
	letter-spacing: -4%;
	color: var(--color-green);
}

.mobile-menu .sub-menu a>span span {
	display: block;
	font-family: var(--font-body);
	font-size: 10px;
	line-height: 140%;
	font-weight: 400;
	margin-top: 6px;
	opacity: .6;
}

.mobile-menu .mobile-nav>ul>li:last-child .sub-menu {
	gap: 0;
}

.mobile-menu .mobile-nav>ul>li:last-child .navWrapper {
	padding: 0;
}

.mobile-menu .mobile-nav>ul>li:last-child .sub-menu li a {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 20%;
	text-transform: uppercase;
	line-height: 1;
	padding: 16px 0;
}

.mobile-menu__actions {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mobile-menu__actions .btn {
	width: 100%;
	justify-content: center;
	-webkit-mask: none;
	mask: none;
	background-image: none;
	padding: 22px;
}

/* LangSwitch */
.LangSwitch{
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 24px 0 0;
	gap: 2px;
}

.LangSwitch-link{
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 20%;
	color: var(--color-white);
	width: 18px;
}

.mmenu{
	display: flex;
	align-items: center;
}


/* video */
.hero-video {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	min-height: 640px;
}

.hero-video video {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	min-height: 640px;
}

.hero-video::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(90deg,
			rgba(0, 0, 0, .80) 0%,
			rgba(0, 0, 0, .20) 100%);
}

.hero-video::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.5) 0%,
			rgba(0, 0, 0, 0) 40%);
}

.hero__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
}

.hero__content-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}

.hero__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 32px;
}

.hero__headline {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--color-white);
}

.hero__text {
	margin: 16px 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .5);
}

.hero__actions {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

.hero__bottom {
	display: none;
}

.hero__bottom .wrapper {
	width: 100%;
}

.hero__bottom-left {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hero__usps-title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--color-white);
}

.hero__usps {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, .5);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	gap: 8px;
}

.hero__usp {
	position: relative;
	padding-left: 32px;
}

.hero__usp::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, .5);
	-webkit-mask: url("/wp-content/uploads/2026/02/checkmark.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/checkmark.svg") no-repeat center / contain;
}

.hero__usp:first-child {
	padding-left: 0;
}

.hero__usp:first-child::before {
	display: none;
}

/* history */
.section {
	margin-top: var(--section-gap);
	margin-bottom: var(--section-gap);
}

.textImage__content {
	max-width: 100%;
}

.headline_h3 {
	margin: 0 0 24px;
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
	letter-spacing: -0.04em;
}

.textImage__text p {
	font-weight: 400;
	font-size: 14px;
	line-height: 200%;
	opacity: 0.65;
	margin: 0;
}

.textImage .wrapper__inner {
	gap: 40px;
	flex-direction: column;
}

/* services */
.services {
	position: relative;
	background: #041E18;
	color: var(--color-white);
}

.services::before,
.services::after {
	content: "";
	display: block;
	height: 100px;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
}

.services::before {
	top: 0;
}

.services::after {
	bottom: 0;
}

.services .services_wrapper {
	max-width: 1320px;
	margin: 0 auto;
	padding: 80px 0;
	background: var(--color-green);
	z-index: 4;
	position: relative;
}

.services_wrapper .wrapper__inner {
	max-width: 1144px;
	padding: 0 24px;
}

.services_wrapper .wrapper__inner:not(:last-child) {
	padding-bottom: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	margin-bottom: 80px;
}

.servicesBlock__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}

.servicesBlock__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start !important;
	gap: 24px;
}

.servicesBlock__title .headline_h3 {
	margin-bottom: 16px;
	line-height: 100%;
}

.servicesBlock__icon {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	object-fit: contain;
	display: block;
}


.servicesBlock__headline {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.1;
	color: var(--color-white);
}

.servicesBlock__subheadline {
	margin: 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.4;
	opacity: .6;
	color: var(--color-white);
}

.servicesBlock__allergy {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	font-family: var(--font-body);
	font-size: 12px;
	line-height: 1;
	opacity: .9;
	margin-top: 16px;
}

.servicesBlock__allergyIcon {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	background-color: var(--color-gold);
	-webkit-mask: url("/wp-content/uploads/2026/02/allergy.svg") no-repeat center / contain;
	mask: url("/wp-content/uploads/2026/02/allergy.svg") no-repeat center / contain;
}

.servicesBlock__allergyText {
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: -2%;
}

.servicesBlock__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 15px;
	row-gap: 48px;
	margin-top: 48px;
	position: relative;
}

.serviceItem {
	display: flex;
	flex-direction: column;
	padding: 0 0 0 16px;
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.serviceItem__title {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: -2%;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.serviceItem__desc {
	margin: 6px 0 15px 0;
	font-weight: 400;
	font-size: 11px;
	line-height: 1.5;
	opacity: .6;
}

.serviceItem__price {
	margin-top: auto;
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: -3%;
}

/* barbers */
.headline_h2 {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	margin: 0;
	color: var(--color-green);
}

.barbers {
	color: var(--color-green);
}

.barbers .headline_h2 {
	max-width: 366px;
}

.barbers__head {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: start;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.barbers__desc {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0;
	color: rgba(14, 42, 36, .70);
}

.barbers__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 40px;
}

.barberCard {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	align-items: center;
}

.barberCard__image {
	height: 100%;
}

.barberCard__image img {
	width: 96px;
	height: 100%;
	object-fit: cover;
	display: block;
}

.barberCard__content {
	max-width: 312px;
}

.barberCard__name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 8px 0;
	color: var(--color-green);
}

.barberCard__position {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	color: rgba(14, 42, 36, .5);
}

.barberCard__info {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	margin: 0 0 16px 0;
	color: rgba(14, 42, 36, .55);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.barberCard__info p {
	margin: 0;
}

.barberCard__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	color: var(--color-green);
	text-decoration: none;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	width: max-content;
}

.barberModal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	padding: 64px 24px;
}

.barberModal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.barberModal__panel {
	width: min(377px, 100%);
	background: #fff;
	position: relative;
	height: min(640px, calc(100vh - 128px));
	overflow: hidden;
}

.barberModal__close {
	position: absolute;
	top: 24px;
	right: 24px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	line-height: 0;
	z-index: 2;
}

.barberModal__close img {
	width: 14px;
	height: 14px;
	display: block;
}

.barberModal__grid {
	display: grid;
	grid-template-columns: 1fr;
	padding: 24px;
	gap: 40px;
	height: 100%;
}

.barberModal__image {
	height: 100%;
}

.barberModal__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	max-width: 160px;
}

.barberModal__body {
	min-height: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.barberModal__name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 12px 0;
	color: var(--color-green);
}

.barberModal__position {
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	color: rgba(14, 42, 36, .5);
}

.barberModal__socials {
	display: flex;
	gap: 8px;
	margin: 0 0 24px 0;
}

.barberModal__social {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.barberModal__social img {
	width: 32px;
	height: 32px;
	display: block;
}

.barberModal__info {
	font-weight: 400;
	font-size: 14px;
	line-height: 2;
	letter-spacing: -0.02em;
	color: rgba(14, 42, 36, .5);
	min-height: 0;
	flex: 1 1 auto;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(14, 42, 36, .28) rgba(14, 42, 36, .08);
}

.barberModal__info p {
	margin-top: 0;
	margin-bottom: 24px;
}

body.is-barber-modal-open {
	overflow: hidden;
}

.barberModal__info::-webkit-scrollbar {
	width: 8px;
}

.barberModal__info::-webkit-scrollbar-track {
	background: rgba(14, 42, 36, .08);
	border-radius: 999px;
}

.barberModal__info::-webkit-scrollbar-thumb {
	background: rgba(14, 42, 36, .28);
	border-radius: 999px;
}

.barberModal__info::-webkit-scrollbar-thumb:hover {
	background: rgba(14, 42, 36, .40);
}

/* testimonials */
.testimonials .wrapper {
	padding: 0;
	max-width: 1320px;
	overflow: hidden;
}

.testimonials .testimonials_wrapper {
	background: #F5F5F5;
	padding: 96px 0 96px 24px;
}

.testimonials__head {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 48px;
}

.testimonials__head .headline_h3 {
	margin-bottom: 0;
	line-height: 120%;
}

.testimonials__subheadline {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 12px;
	line-height: 2;
	letter-spacing: 0;
	color: rgba(14, 42, 36, .55);
}

.testimonialCard__stars {
	display: flex;
	gap: 4px;
	margin: 0 0 16px 0;
}

.testimonialCard__star {
	width: 16px;
	height: 16px;
	display: block;
}

.testimonialCard__text {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 12px;
	line-height: 2;
	letter-spacing: 0;
	color: var(--color-green);
	margin: 0 0 16px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.testimonialCard__name {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-green)
}

.testimonials__slider .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* gallery */
.gallery {
	overflow: hidden;
	margin: 160px 0;
}

.gallery .headline_h2 {
	font-size: 24px;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 64px auto;
}

/* container */
.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee__viewport{
  overflow: hidden;
  transform: translateZ(0);
}

/* moving strip */
.marquee__track{
  display: flex;
  align-items: center;
  gap: 8px; /* or var(--marquee-gap) */
  width: max-content;
  will-change: transform;
  animation: marquee var(--marquee-speed) linear infinite;
}

/* each tile */
.marquee__item{
  margin: 0;
  flex: 0 0 auto;
  height: 400px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

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

/* JS sets --marquee-shift */
@keyframes marquee{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0); }
}

/* pause on hover/focus */
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track{
  animation-play-state: paused;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}

@media screen and (max-width: 760px) {
  .marquee { margin-top: 56px; }
  .marquee__item { height: 280px; }
}

/* .gallery__slider {
	width: 100%;
	overflow: visible;
}

.gallery__item {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
} */

/* footer */

.footer {
	position: relative;
	background: #041E18;
}

.footer::before {
    content: "";
    display: block;
    height: 193px;
    background: #fff;
    position: absolute;
	top: 0;
    left: 0;
    right: 0;
}

.footer_top{
	background: var(--color-green);
	padding: 80px 0;
}

.footer_top .wrapper__inner{
	padding: 0 24px;
	max-width: 1144px;
}

.footerTop{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 64px;
}

.headline_h2.footerContact__headline{
	color: var(--color-white);
}

.footerContact{
	max-width: 446px;
}

.footerContact__socials{
  display: flex;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.footerContact__meta{
    display: grid;
    gap: 24px;
}

.footerContact__row{
	display: flex;
	align-items: center;
	gap: 24px;
}

.footerContact__rowText{
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-decoration: none;
}

.footerContact__rowText span{
	display: block;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: .10em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
}

.footerTop__image img{
	width: 100%;
	max-width: 345px;
}

/* =========================
   OPENING HOURS ROW
   ========================= */
.footerHours{
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;

}

.footerHours__headline{
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--color-white)
}


.footerHours__list{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footerHours__item{
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.footerHours__day{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-gold);
}

.footerHours__time{
	margin-top: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white)
}

.footerBottom_wrapper{
	border-top: 1px solid rgba(255, 255, 255, .2);
}
.footerBottom{
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 24px 0;
}

.footerBottom__links ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-white)
}

.footerBottom__links li{
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.footerBottom__links a{
  color: var(--color-white);
  text-decoration: none;
  transition: opacity .2s ease;
}

.footerBottom__links a:hover{
  opacity: .85;
}

/* RIGHT DEV LOGO */
.footerBottom__dev{
  flex: 0 0 auto;
  display: flex;
}

.footerBottom__dev img{
  display: block;
  width: auto;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.post-hero{
	position: relative;
	height: 400px;   
	overflow: hidden;
}

.post-hero__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post-hero::before{
	content:"";
	position:absolute;
	inset:0;
	pointer-events:none;
	z-index: 1;

	background:
		/* Gradient 1 */
		linear-gradient(90deg,
			rgba(0,0,0,0.80) 0%,
			rgba(0,0,0,0.20) 100%
		),
		/* Gradient 2 */
		linear-gradient(90deg,
			rgba(0,0,0,0.50) 0%,
			rgba(0,0,0,0.00) 100%
		);
}

.blog_wrapper p img{
	margin: 0;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media(max-width:400px) {
	.btn {
		padding: 24px;
	}

	.hero__headline {
		font-size: 32px !important;
	}
}

@media only screen and (min-width:393px) {
	.headline_h2.footerContact__headline{
		font-size: 40px!important;
	}
	.LangSwitch{
		padding-right: 48px;
	}

}

@media only screen and (min-width:768px) {
	.headline_h2 {
		font-size: 40px;
	}

	.servicesBlock__title {
		flex-direction: row;
		align-items: center !important;
		width: 100%;
	}

	.servicesBlock__titleText {
		width: 100%;
	}

	.services .services_wrapper {
		padding: 112px 0;
	}

	.servicesBlock__subheadline {
		font-size: 16px;
	}

	.servicesBlock__head {
		flex-direction: row;
	}

	.servicesBlock__title .headline_h3 {
		margin-bottom: 8px;
		display: flex;
		justify-content: space-between;
	}

	.servicesBlock__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 80px;
		margin-top: 64px;
	}

	.serviceItem {
		padding: 0 32px;
	}

	.serviceItem__title {
		font-size: 16px;
	}

	.serviceItem__desc {
		font-size: 13px;
		line-height: 1.4;
	}

	.serviceItem__price {
		margin-top: 16px;
		font-size: 16px;
	}

	.servicesBlock__allergy {
		margin-top: 0;
	}

	.servicesBlock__allergyText {
		font-size: 14px;
	}

	.barbers__head {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 64px;
		padding-bottom: 64px;
	}

	.barbers__grid {
		margin-top: 80px;
		grid-template-columns: 1fr 1fr;
		column-gap: 24px;
		row-gap: 64px;
	}

	.barberCard__btn {
		display: inline-flex;
		padding: 19px 14px;
		border: 1px solid rgba(14, 42, 36, .20);
	}

	.barberCard__position {
		margin: 0 0 16px 0;
	}

	.barberCard {
		grid-template-columns: 120px 1fr;
		gap: 32px;
		align-items: start;
	}

	.barberCard__image img {
		width: 120px;
	}

	.gallery .headline_h2 {
		font-size: 40px;
	}
	.footerTop{
		align-items: center;
		flex-direction: row;
	}
	.footerHours{
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 64px;
		align-items: center;
	}
	.footerHours__list{
		flex-direction: row;
		gap: 64px;
		align-items: flex-end;
		justify-content: flex-end;
	}
	.footerBottom{
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
	}
	.footerBottom__links{
		flex-direction: row;
	}
	.footerBottom__links ul{
		flex-direction: row;
		align-items: center;
		gap: 24px;
	}
	.footerBottom__links li:not(:last-child)::after{
		content: "|";
		margin-left: 24px;
		opacity: .2;
	}
	.footerBottom__dev{
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
}

@media only screen and (min-width:960px) {
	:root {
		--section-gap: 200px;
	}
	.LangSwitch{
		padding: 0 48px;
		margin-left: 48px;
	}

	.LangSwitch:before{
		content: "";
		position: absolute;
		top: 12px;
		left: 0;
		height: 8px;
		width: 1.5px;
		background: rgba(255, 255, 255, .3);
	}
	.mmenu{
		display: none;
	}

	.header {
		padding: 0 32px;
		height: 112px;
	}

	.header-right {
		display: flex;
		align-items: center;
	}
.header-right #menu-item-195,
	.header-right #menu-item-48 {
		display: none !important;
	}

	.hero-video {
		height: 100vh;
	}

	.hero-video video {
		height: 100%;
	}

	.hero__content {
		border: 12px solid white;
	}

	.hero__content-inner {
		padding: 0 48px;
	}

	.hero__bottom {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 64px;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		justify-content: space-between;
		gap: 8px;
		padding: 0 48px;
	}

	.hero__main {
		justify-content: center;
		padding: 0;
	}

	.hero__headline {
		font-size: 64px;
	}

	.hero__text {
		font-size: 16px;
		line-height: 2;
	}

	.hero__actions {
		gap: 20px;
	}

	.headline_h3 {
		margin: 0 0 40px;
		font-size: 32px;
	}

	.textImage .wrapper__inner {
		flex-direction: row;
	}

	.textImage--image-right .textImage__content {
		order: 1;
	}

	.textImage__content {
		max-width: 424px;
	}	

	.textImage--image-right .textImage__image {
		order: 2;
	}


	.textImage__image {
		width: unset;
	}

	.textImage__image > img {
		max-width: 536px;
		height: 640px;
		object-fit: cover;
		vertical-align: bottom;
	}

	.barberModal__panel {
		width: min(1024px, 100%);
	}

	.barberModal__grid {
		grid-template-columns: 360px 1fr;
		padding: 80px;
		gap: 80px;
	}

	.barberModal__image img {
		max-width: 100%;
	}

	.testimonials__head {
		flex-direction: row;
		align-items: center;
		max-width: 1096px;
		padding-right: 112px;
		margin-bottom: 64px;
	}

	.testimonials .testimonials_wrapper {
		padding: 112px 0 112px 112px;
		margin-bottom: 64px;
	}

	.testimonialCard__text {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.testimonialCard__name {
		font-size: 14px;
	}
	.footer_top{
		padding: 112px 0;
	}

	.footerContact__socials{
		margin-bottom: 64px;
	}
	.footerTop__image img{
		max-width: 100%;
	}
	
	.blog_wrapper{
		padding: 112px 24px;
	}
	.subpage__wrapper{
		padding: 112px 24px;
	}

	.services {
		border: 12px solid white;
	}

	.footer {
		border: 12px solid white;
	}
}

@media only screen and (min-width:1024px) {
	.nav>ul {
		gap: 48px;
	}
}

@media only screen and (min-width:1140px) {
	.nav>ul {
		gap: 64px;
	}
}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " ("attr(href) ")";
	}

	abbr[title]:after {
		content: " ("attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}