body {
	background: #0f0f10;
	color: #fff;
	font-family: Inter, sans-serif;
}
.container-fluid{max-width: 1900px}
h1,h2,h3{font-family:  "Akt", sans-serif; text-transform: uppercase; font-weight: 900;letter-spacing: -.04em;}
a:hover{color:#333}
.header {
	
	position:absolute;
	top: 25px;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba( 90, 51, 106, .95);
	backdrop-filter: blur(10px);
}

.header__row {
	
	height: 70px;
	align-items:center;

	display: flex;
	position: relative;
}
.header__row address{margin-bottom: 0;}
.header__info{margin-left: 0rem}
.header__logo{margin-right: 2rem; min-width: 100px; }

.header__phone{font-size: 1.45rem;color:#fff;font-weight: 900;
    text-decoration: none;
    font-family: "Akt", sans-serif;}

.header__logo img {
	position: absolute;
	top:-22px;
	left:0;
	height: 110px;
}

.header__nav {
	display: flex;
	justify-content: center;
	gap: 30px;

	
}

.header__nav a {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.2s;
}

.header__nav a:hover {
	opacity: 1;
}

.header__time {
	font-size: 14px;
	opacity: 0.8;
}

.section-intro {
	position: relative;
	min-height: calc(100vh - 50px);
	display: flex;
	align-items: center;
	padding-top: 120px;
	
	
	background:  radial-gradient(circle at top, rgba(122, 32, 173, .45), transparent 45%),
		linear-gradient(0deg, #120017 0%, #1a0122 100%) center center / cover no-repeat;
	
	
	
}
.section-intro__image{position: absolute; width:100%; height:100%;}
.section-intro__image img{object-fit: cover; object-position: center center; width: 100%;
    height: 100%;
}

.section-intro h1 {
	font-size: 4.7rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1;

}

.section-intro__subtitle {
	font-size: 1rem;

	margin-bottom: .9125rem;
	text-transform: uppercase;
	    color: #F8B000;
    font-weight: bold;	margin-top:2rem;
		
}
.section-intro__food{font-size: 2.4rem;color:#F8B000}

.btn-main {
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    min-height: 82px;
    padding: 16px 32px;
    color: #000000;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #ffb100;
    border-radius: 16px;
	text-decoration: none;
	z-index: 1;
	
}

.btn-main:hover {
	background: #ffd24a;
}

.section-intro__features {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.section-intro__feature {
	font-size: 14px;
	opacity: 0.7;
}

.section-intro__visual {
	text-align: right;
}
.section-intro__content{
	z-index: 2;
	position: relative
}
.section-intro__image {
	z-index: 1;
	max-width: 100%;

	
}
.section-intro__cta{margin-top:3rem}

.section-products {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at top, rgba(122, 32, 173, .45), transparent 45%),
		linear-gradient(180deg, #120017 0%, #1a0122 100%);
}

.section-products__header {
	margin-bottom: 72px;
}

.section__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 4px 28px;
	margin-bottom: 28px;
	border: 1px solid rgba(255, 193, 7, .5);
	border-radius: 999px;
	background: rgba(255, 193, 7, .08);

}

.section__badge span {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #ffbf00;
}

.section-products__title {
	margin: 0;
	font-size: 3rem;
	font-weight: 900;
	line-height: .92;

	text-transform: uppercase;
	color: #ffffff;
}

.section-products__title span {
	display: block;
	color: #ffb100;
}

.section-products__subtitle {
	margin-top: 28px;
	font-size: 1.25rem;
	line-height: 1.4;
	color: rgba(255,255,255,.92);
}



.product-card {
	position: relative;
	height: 100%;
	padding: 32px 36px 36px;
	border: 1px solid rgba(255,255,255,.12);
	
	
	
	
	border-radius: 40px;
	background: #742C87; /*rgba(255,255,255,.06);*/
	backdrop-filter: blur(18px);
	text-align: center;
	display: flex;
	flex-direction: column;
	

  /* 1. Set border size and make it transparent */
  border: 2px solid transparent;
  border-radius: 15px;

  /* 2. Layer two backgrounds: 
     - Inner solid color clipped to the padding area
     - Outer rainbow gradient clipped to the border area */
  background: 
    linear-gradient(#310A43,#310A43) padding-box, 
    conic-gradient(
      violet,    orange,  violet, yellow, violet 
    ) border-box;

  padding: 20px;
  width: fit-content;


}

.product-card__image-wrap {
	position: relative;
	min-height: 320px;

	
}

.product-card__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.product-card__note {
	position: absolute;
	font-size: 1rem;
	line-height: 1.3;
	color: #ffffff;
	opacity: .92;
	font-style: italic;
	font-family:  "Akt", sans-serif; 
}

.product-card__note--left {
	top: -120px;
	left: -24px;
	transform: rotate(-7deg);
	
	
	
}

.product-card__note--left::before{
	content:'';
	display: block;
	width:100px;
	height:100px;
	background:url(/images/arrow-left.png) center center /contain no-repeat;
	
		transform: rotate(70deg);
	position: absolute;
	top:40px;
	
}
.product-card__note--right {
	top: -100px;
	right: -24px;
	text-align: right;
	transform: rotate(7deg);
}
.product-card__note--right::before{
	content:'';
	display: block;
	width:100px;
	height:100px;
	background:url(/images/arrow-left.png) center center /contain no-repeat;
	
		transform: rotate(130deg);
	position: absolute;
	top:30px;
	right:70px;
}



.product-card__content{	flex-grow:1; display: flex;
	flex-direction: column;}

.product-card__title {
	margin: 0 0 16px;
	font-size: 1.71rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: #ffb100;
}

.product-card__description {
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
	color: rgba(255,255,255,.94);
}

.product-card__bottom {
	margin-top: auto;
	padding-top:24px;
	display: none;
}

.product-card__price-wrap {

	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 14px 22px;
	border: 1px solid rgba(255, 193, 7, .4);
	border-radius: 999px;
	background: rgba(255,255,255,.05);
	width:fit-content;
	margin:auto auto 0;
}

.product-card__price {
	font-style: normal;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	color: #ffb100;
}

.product-card__weight {
	font-size: 1.125rem;
	color: rgba(255,255,255,.82);
}

.advantages {
	margin-top: 72px;
}

.advantages__item {
	display: flex;
	gap: 24px;
	height: 100%;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.advantages__icon {
	flex-shrink: 0;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	border: 1px solid rgba(255, 193, 7, .4);
	background: rgba(255,255,255,.04);
	padding:12px;
}
.advantages__icon img{width:100%; height:100%;object-fit: contain}

.advantages__title {
	margin: 0 0 12px;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	color: #ffb100;
}

.advantages__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255,255,255,.88);
}

@media (max-width: 991px) {
	.products-section {
		padding: 96px 0;
	}

	.products-section__subtitle {
		font-size: 22px;
	}

	.product-card__title {
		font-size: 42px;
	}

	.product-card__description {
		font-size: 22px;
	}

	.advantages__title {
		font-size: 24px;
	}

	.advantages__text {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.products-section {
		padding: 72px 0;
	}

	.products-section__header {
		margin-bottom: 48px;
	}

	.product-card {
		padding: 28px;
		border-radius: 28px;
	}

	.product-card__image-wrap {
		min-height: auto;
	}

	.product-card__title {
		font-size: 34px;
	}

	.product-card__description {
		font-size: 18px;
	}

	.product-card__price {
		font-size: 30px;
	}

	.product-card__weight {
		font-size: 18px;
	}

	.product-card__note {
		display: none;
	}

	.advantages {
		margin-top: 56px;
	}

	.advantages__item {
		padding-top: 24px;
	}
}
@media (max-width: 991px) {

	.section-intro__title {
		font-size: 36px;
	}

	.section-intro__visual {
		margin-top: 40px;
		text-align: center;
	}

}

















.section-testimonials {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    background:
        radial-gradient(circle at center, rgba(72, 0, 128, 0.45), transparent 50%),
        linear-gradient(180deg, #120025 0%, #1c0037 100%);
}

.section-testimonials::before {
    position: absolute;
    inset: 0;
    
    opacity: 0.08;
    content: '';
    pointer-events: none;
}

.section-testimonials__wrapper {
    position: relative;
    z-index: 1;
}

.section-testimonials__header {
    margin-bottom: 56px;
    text-align: center;
}

.section-testimonials__title {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.section-testimonials__title-light {
    color: #fff;
}

.section-testimonials__title-accent {
    color: #ffb100;
}

.section-testimonials__description {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;
}


.section-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
	max-height: 360px;
    padding: 32px;
    border: 1px solid rgba(199, 94, 255, 0.45);
    border-radius: 36px;
    background: rgba(25, 0, 48, 0.88);
    backdrop-filter: blur(10px);
	flex-direction: column;
    display: flex;
}

.testimonial-card--wide {
    grid-column: span 2;
}

.testimonial-card--image {
    padding: 0;
}

.testimonial-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__quote {

    color: #ffb100;
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.6;
	font-family: Akt,sans-serif;
}

.testimonial-card__text {
    margin-bottom: 24px;
    font-size:  .95rem;
    font-weight: 500;
    line-height: 1.35;
}
.testimonial-card__text--big {
    margin-bottom: 24px;
    font-size:  1.25rem;
    font-weight: 500;
    line-height: 1.35;
}


.testimonial-card__text strong {
    color: #ffb100;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
	margin-top:auto;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author-name {
    font-size: .8rem;
    font-weight: 600;
}

.testimonial-card__author-city {
    color: rgba(255, 255, 255, 0.72);
    font-size: .75rem;
}

.testimonial-card__favorite {
    width: 34px;
    height: 34px;
}

.testimonial-card__chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card__message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: .9125rem;
    line-height: 1.35;
}

.testimonial-card__message--incoming {
    background-color: #ffffff;
    color: #121212;
}

.testimonial-card__message--outgoing {
    align-self: flex-end;
    background: linear-gradient(135deg, #6f1cff 0%, #9e38ff 100%);
}

.testimonial-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.testimonial-card__rating-value {
    color: #ffb100;
    font-size: 72px;
    font-weight: 900;
}

.testimonial-card__rating-caption {
    max-width: 280px;
    font-size: 1.55rem;
    line-height: 1.3;
}
.testimonial-card__rating-caption a{color:#fff}
.testimonial-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    min-height: 82px;
    padding: 16px 32px;
    color: #000000;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #ffb100;
    /*clip-path: polygon(0 8%, 100% 0, 96% 100%, 0 92%);*/
	border-radius: 16px;
	text-decoration: none;
	margin-top: 12px;
}
.testimonial-card__maps-icon{margin-right: 1rem}



.section-testimonials__topline{display:flex;justify-content: space-between;align-items: flex-end; position: relative}

.section-testimonials__note.section-testimonials__note--left{
	    font-size: 1rem;
    line-height: 1.3;
    color: #ffffff;
    opacity: .92;
    font-style: italic;
    font-family: "Akt", sans-serif;
;
	transform: rotate(-7deg);
	position: absolute;top:70%;
	z-index: 1;left:10px
	
	
}
.section-testimonials__heading{margin:0 auto}
.section-testimonials__note.section-testimonials__note--right{font-size: 1.25rem;text-align: left}
.section-testimonials__social-list{list-style: none; display:flex;margin-left: 0;padding-left: 0}
.section-testimonials__social-list li{ margin-right: 12px;}
.section-testimonials__social-list li a{display: block;width:32px;height:32px;}



.social-link--tg{background:url(/images/icon-social_telegram--white.svg) center center/contain no-repeat}
.social-link--vk{background:url(/images/icon-social_vk--white.svg) center center/contain no-repeat}



.section-testimonials__note.section-testimonials__note--left::before{
	content:'';
	display: block;
	width:90px;
	height:90px;
	background:url(/images/arrow-left.png) center center /contain no-repeat;
	
		transform: rotate(54deg) scaleY(-1);
	position: absolute;
	top:40px;
	left: 60px;
	
}



.testimonial-card--cta{
    display: flex;
    justify-content: center;
}

.testimonial-card__cta-title{font-size: 2.75rem;}
.testimonial-card__cta-title span{color:#ffb100;}

@media (max-width: 991px) {
    .section-testimonials {
        padding: 64px 0 80px;
    }

    .section-testimonials__description {
        font-size: 24px;
    }

    .section-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .section-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: auto;
        padding: 24px;
        border-radius: 28px;
    }

    .testimonial-card__text {
        font-size: 22px;
    }

    .testimonial-card__message {
        font-size: 18px;
    }

    .testimonial-card__rating-value {
        font-size: 54px;
    }

    .testimonial-card__rating-caption {
        font-size: 1.25rem;
    }

    .testimonial-card__button {
        width: 100%;
        min-width: 100%;
        font-size: 22px;
    }
}


.section-location{background: #573068; padding:100px 0;    margin-top: -80px;
    
    position: relative;}
.section-location__info{display:flex;justify-content: space-between}
.section-location__caption{font-size:2rem;    font-family: "Akt", sans-serif; font-weight:900}
.section-location__value{font-size:1.5rem;}


.section-location .social-list{ list-style: none; display:flex;margin-left: 0;padding-left: 0;    margin-top: 10px;}
.section-location .social-list li{ margin-right: 12px;}
.section-location .social-list li a{display: block;width:56px;height:56px;}











.section-about-cafe {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(120, 30, 255, .35), transparent 35%),
		radial-gradient(circle at left center, rgba(255, 180, 0, .08), transparent 30%),
	
		#12001f
		;
	padding: 0;
	color: #fff;
}

.section-about-cafe__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, .05) 0%,
			rgba(0, 0, 0, .35) 100%
		);
	pointer-events: none;
}

.section-about-cafe__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 0 80px 120px 70px;
}
.section-about-cafe__content p{font-size: 1.025rem}
.section-about-cafe__subtitle {
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #ffbe1b;
}

.section-about-cafe__title {
	margin: 0;
	font-size: clamp(72px, 8vw, 100px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -.04em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 2rem;
}

.section-about-cafe__accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	padding: 18px 30px;
	border-radius: 18px;
	background: #ffbe1b;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	color: #14001f;
	transform: rotate(-2deg);
	width: fit-content;
	box-shadow: 0 20px 60px rgba(255, 190, 27, .25);
}

.section-about-cafe__features {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 56px;
	max-width: 560px;
}

.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 22px;
}

.about-feature__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 20px;
	background: rgba(255, 255, 255, .04);
	backdrop-filter: blur(10px);
}

.about-feature__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.about-feature__title {
	margin-bottom: 8px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
}

.about-feature__text {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.section-about-cafe__visual {
	position: relative;
	height: 100%;
	min-height: 880px;
}

.section-about-cafe__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-about-cafe__paint {
	position: absolute;
	left: -10px;
	top:20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 220px;
	padding: 30px;
	border-radius: 50%;
	background: #ffbe1b;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	color: #14001f;
	box-shadow: 0 25px 80px rgba(255, 190, 27, .35);
	transform: rotate(-8deg);
}

.section-about-cafe__bottom {
	position: relative;
	z-index: 2;
	margin-top: -180px;
	padding:0 54px 180px;

}

.section-about-cafe__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	    margin-right: 60px;
}

.about-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 34px 30px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 32px;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(18px);
	box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

.about-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 26px;
	border-radius: 20px;
	background: rgba(255, 190, 27, .08);
}

.about-card__icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.about-card__title {
	margin-bottom: 14px;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.about-card__text {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.section-about-cafe__awards {
	display: flex;
	flex-direction: column;
	
	height: 100%;
	padding: 34px 30px;
	border-radius: 36px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 190, 27, .14) 0%,
			rgba(255, 190, 27, .04) 100%
		);
	border: 1px solid rgba(255, 190, 27, .2);
	backdrop-filter: blur(18px);
}
.section-about-cafe__awards header{display:flex; justify-content: space-between}


.section-about-cafe__awards-icon {
	display: flex;flex-wrap: nowrap
	
}

.section-about-cafe__awards-icon img {
	width: 120px;
	height: 67px;
	object-fit: contain;
}

.section-about-cafe__awards-title {
	margin-bottom: 14px;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.15;
	color: #fff;
}

.section-about-cafe__awards-title strong {
	color: #ffbe1b;
}

.section-about-cafe__awards-text {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .72);
}

.section-about-cafe__decor {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	opacity: .08;
}

.section-about-cafe__decor--left {
	left: -120px;
	bottom: 120px;
	width: 360px;
}

.section-about-cafe__decor--right {
	right: -120px;
	top: 120px;
	width: 320px;
}

@media (max-width: 1399px) {

	.section-about-cafe__content {
		padding: 100px 56px;
	}

	.section-about-cafe__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {

	.section-about-cafe__content {
		padding: 80px 24px 60px;
	}

	.section-about-cafe__visual {
		min-height: 520px;
	}

	.section-about-cafe__paint {
		left: 24px;
		bottom: 24px;
		width: 160px;
		height: 160px;
		font-size: 20px;
	}

	.section-about-cafe__bottom {
		margin-top: 0;
		padding: 40px 0 80px;
	}

	.section-about-cafe__cards {
		grid-template-columns: 1fr;
	}

	.section-about-cafe__awards {
		margin-top: 24px;
	}
}

@media (max-width: 575px) {

	.section-about-cafe__title {
		font-size: 56px;
	}

	.section-about-cafe__accent {
		font-size: 18px;
		padding: 14px 20px;
	}

	.about-feature {
		gap: 16px;
	}

	.about-feature__icon {
		width: 54px;
		height: 54px;
		border-radius: 16px;
	}

	.about-feature__title {
		font-size: 20px;
	}

	.about-card {
		padding: 28px 24px;
		border-radius: 26px;
	}

	.section-about-cafe__awards {
		padding: 30px 24px;
		border-radius: 28px;
	}

	.section-about-cafe__awards-title {
		font-size: 24px;
	}
}

.site-footer{background:#573068; padding:1rem 0}
.site-footer p{font-size:.9rem; margin-bottom:0}