@import"https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap";

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem
}

.text-center {
	text-align: center
}

.hidden {
	display: none
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: #646669;
	background-color: #fbf8f1
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2
}

p {
	margin-bottom: 1rem;
	line-height: 1.5
}

.heading-1 {
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2
}

.heading-2 {
	font-family: "Montserrat", sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2
}

.heading-3 {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px
}

.content-1 {
	font-family: "Crimson Text", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px
}

.content-2 {
	font-family: "Crimson Text", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px
}

.nav-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: calc(100vh - 2rem);
	margin: 1rem;
	z-index: 1000
}

.navigation {
	width: 100%
}

.navigation__list {
	list-style: none;
	padding: 0;
	margin: 0
}

.navigation__item:not(:last-child) {
	margin-bottom: 1rem
}

.navigation__link {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	padding: .5rem 1rem;
	border-radius: 4px;
	transition: background .2s, color .2s
}

.navigation__link:hover,
.navigation__link.active {
	color: #b48a3a
}

.navigation__dropdown {
	position: relative
}

.navigation__dropdown-list {
	display: block;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .25s;
	background: rgba(0, 0, 0, 0);
	padding: 0;
	margin: 0 0 0 1.2rem
}

.navigation__dropdown.open>.navigation__dropdown-list {
	max-height: 500px;
	opacity: 1;
	transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s
}

.navigation__dropdown-list li {
	margin-bottom: .5rem
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 350px;
	height: 100%;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: center
}

@media(max-width: 980px) {
	.sidebar {
		display: none
	}
}

.sidebar__wrapper {
	width: 300px;
	position: relative;
	margin-bottom: 100px;
	background: rgba(24, 24, 24, .6);
	margin-bottom: 0;
	transition: transform .3s ease-in-out;
	transform-origin: top;
	border-radius: 8px;
	backdrop-filter: blur(10px);
	overflow: hidden
}

.sidebar__logo {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	padding: 2rem
}

.sidebar__nav {
	width: 100%;
	flex: 1;
	background-color: #131413;
	padding: 2rem
}

.mobile-navbar {
	display: none;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: #fbf8f1;
	border-top: 1.5px solid #e5e2db;
	font-family: "Montserrat", sans-serif;
	color: #41444b
}

@media(max-width: 980px) {
	.mobile-navbar {
		display: block
	}
}

.mobile-navbar .navigation__link {
	color: #222
}

.mobile-navbar .navigation__link.active {
	color: #b48a3a
}

.mobile-navbar__wrapper {
	display: flex;
	flex-direction: column
}

.mobile-navbar__header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem 1rem 1rem;
	height: 60px
}

.mobile-navbar__logo {
	width: 100px;
	height: auto
}

.mobile-navbar__burger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	cursor: pointer
}

.mobile-navbar__burger-line {
	width: 20px;
	height: 2px;
	background: #41444b;
	transition: all .3s ease
}

.mobile-navbar__content {
	display: none;
	transition: all .3s ease;
	height: calc(100vh - 60px);
	width: 100%;
	background: #fbf8f1;
	border-top: 1.5px solid #e5e2db
}

.mobile-navbar.open .mobile-navbar__burger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px)
}

.mobile-navbar.open .mobile-navbar__burger-line:nth-child(2) {
	opacity: 0
}

.mobile-navbar.open .mobile-navbar__burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px)
}

.mobile-navbar.open .mobile-navbar__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem;
	background: #fbf8f1;
	border-top: 1.5px solid #e5e2db
}

.footer {
	width: 100vw;
	background: #fbf8f1 url("../img/footer-background.png") center/cover repeat;
	border-top: 1.5px solid #e5e2db;
	padding: 3.5rem 2rem;
	font-family: "Montserrat", sans-serif;
	color: #41444b
}

.footer__container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 3.5rem;
	justify-content: flex-start
}

.footer__map {
	flex: 1.1 1 0;
	min-width: 260px;
	max-width: 450px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start
}

.footer__map iframe {
	width: 100%;
	aspect-ratio: 1/1;
	min-width: 420px;
	min-height: 420px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #444;
	font-size: 1.1rem
}

.footer__contacts {
	flex: 1.2 1 0;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	gap: 2.5rem
}

.footer__contacts-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem
}

@media(max-width: 900px) {
	.footer__contacts-list {
		flex-direction: row;
		gap: 2.5rem
	}
}

.footer__contact-title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: .3em;
	color: #fbf8f1
}

.footer__contact-desc {
	font-size: 14px;
	color: #a6a6a6;
	line-height: 1.5
}

.footer__socials {
	margin-top: 1.5rem
}

.footer__socials-title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: .7em;
	color: #fbf8f1
}

.footer__socials-icons {
	display: flex;
	gap: 1.2rem;
	margin-top: .5rem
}

.footer__social {
	color: #a6a6a6;
	fill: #a6a6a6;
	transition: color .2s;
	display: inline-flex;
	align-items: center
}

.footer__social:hover {
	color: #f4d699
}

.footer__links {
	flex: 1 1 0;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	gap: 2.5rem
}

.footer__quicklinks-title,
.footer__legal-title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: .7em;
	color: #fbf8f1
}

.footer__quicklinks-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	border: none;
	border-radius: 0;
	overflow: visible;
	background: none
}

.footer__quicklink {
	display: block;
	padding: .9em 1.2em;
	color: #a6a6a6;
	text-decoration: none;
	background: none;
	border-bottom: none;
	font-size: 14px;
	transition: background .2s, color .2s
}

.footer__quicklink:hover {
	color: #f4d699;
	background: none
}

.footer__quicklinks-list .footer__dropdown {
	margin-bottom: .5em
}

.footer__dropdown-title {
	font-weight: 600;
	cursor: pointer;
	padding: .7em 1.2em;
	background: none;
	border: none;
	color: #a6a6a6;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: color .2s
}

.footer__dropdown-title:hover {
	color: #f4d699
}

.footer__dropdown-list {
	list-style: none;
	padding-left: 1.5em;
	margin: .2em 0 .5em 0;
	display: none
}

.footer__dropdown.open .footer__dropdown-list {
	display: block
}

.footer__legal-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.footer__legal-link {
	color: #a6a6a6;
	text-decoration: none;
	font-size: 14px;
	display: block;
	margin-bottom: .5em;
	transition: color .2s
}

.footer__legal-link:hover {
	color: #f4d699
}

@media(max-width: 900px) {
	.footer__container {
		flex-direction: column;
		gap: 2.5rem;
		align-items: stretch
	}

	.footer__map iframe {
		min-width: 160px;
		min-height: 160px;
		aspect-ratio: 1/1
	}
}

.btn {
	font-family: "Montserrat", sans-serif;
	cursor: pointer;
	outline: none;
	box-shadow: none;
	box-sizing: border-box;
	touch-action: manipulation;
	height: auto;
	width: auto;
	text-decoration: none;
	white-space: nowrap;
	min-height: 0px;
	min-width: 0px;
	max-height: none;
	max-width: none;
	text-align: inherit;
	line-height: 24px;
	letter-spacing: 2px;
	font-weight: 600;
	font-size: 14px;
	border-style: solid;
	border-width: 2px;
	padding: 12px 55px 13px;
	border-radius: 30px;
	backdrop-filter: none;
	filter: none;
	transform-origin: 150.43px 26.5px;
	opacity: 1;
	text-transform: uppercase;
	transition: all .3s ease
}

.btn--primary {
	color: #f4d699;
	border-color: #f4d699
}

.btn--primary:hover {
	background: #f4d699;
	color: #41444b
}

.btn--secondary {
	color: #b49ebf;
	border-color: #b49ebf
}

.btn--secondary:hover {
	background: #b49ebf;
	color: #fff
}

.navigation__dropdown>.navigation__link::after {
	content: "▼";
	font-size: .7em;
	margin-left: .5em;
	transition: transform .3s;
	display: inline-block
}

.navigation__dropdown.open>.navigation__link::after {
	transform: rotate(-180deg)
}

.navigation__dropdown-list {
	display: none
}

.navigation__dropdown.open>.navigation__dropdown-list {
	display: block
}

.dish-card {
	background: #fff;
	border: 1.5px solid #bbb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: box-shadow .38s cubic-bezier(0.4, 0.2, 0.2, 1), transform .38s cubic-bezier(0.4, 0.2, 0.2, 1);
	cursor: pointer;
	min-width: 180px;
	min-height: 320px;
	max-width: 360px;
	text-decoration: none;
}

.dish-card:hover {
	box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
	transform: translateY(-2px) scale(1.012);
	z-index: 2
}

.dish-card:hover .dish-card__img img {
	transform: scale(1.07)
}

.dish-card__img {
	width: 100%;
	height: 240px;
	background: #faf7f2;
	margin-bottom: 1.1rem;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden
}

.dish-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s cubic-bezier(0.4, 0.2, 0.2, 1)
}

.dish-card__body {
	padding: 1.2rem 1rem 1.2rem 1rem
}

.dish-card__title {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: .5em;
	color: #a6a6a6
}

.dish-card__desc {
	font-size: 14px;
	color: #41444b;
	margin-bottom: 1.2em
}

.dish-card__price {
	font-size: 14px;
	color: #ffbf46 !important;
	font-style: italic;
	margin-top: auto
}

@media(max-width: 980px) {
	#home .hero {
		padding-left: 0 !important
	}

	#home .about,
	#home .services,
	#home .dishes,
	#home .testimonials {
		padding-left: 2rem !important
	}
}

#home .hero {
	min-height: 100vh;
	width: 100vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative
}

#home .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
	pointer-events: none
}

#home .hero__content {
	position: absolute;
	bottom: 15%;
	right: 10%;
	color: #fff;
	padding: 3rem 2.5rem;
	border-radius: 12px;
	text-align: left;
	max-width: 560px
}

@media(max-width: 980px) {
	#home .hero__content {
		position: relative;
		bottom: 0;
		right: 0;
		padding: 2rem;
		max-width: 100%;
		text-align: center
	}
}

#home .hero__title {
	font-size: 64px !important;
	color: #ffbf46;
	margin-bottom: 1rem;
	text-shadow: 1px 1px black;
}

#home .hero__desc {
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	margin-bottom: 3rem
}

#home .about {
	width: 100vw;
	background: #fbf8f1 url("../img/topography.svg") center/cover no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 400px;
	padding-left: calc(350px + 8vw);
	padding-top: 4rem;
	padding-bottom: 4rem;
	padding-right: 2rem;
	z-index: 1
}

#home .about::before {
	content: "";
	position: absolute;
	inset: 0;
	background: hsla(0, 0%, 100%, .85);
	z-index: 2;
	pointer-events: none
}

#home .about__container {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto
}

#home .about__image {
	width: 375px;
	height: 375px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 20px
}

#home .about__image-pattern {
	color: #dbd7cf
}

#home .about__image img {
	transform: translate(20px, -10px);
	border-radius: 12px;
	overflow: hidden;
	object-fit: cover;
	display: block
}

#home .about__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center
}

#home .about__title {
	color: #41444b
}

#home .about__desc {
	color: #646669;
	margin-bottom: 2em;
	margin-top: 2em
}

@media(max-width: 900px) {
	#home .about__container {
		flex-direction: column;
		gap: 2rem;
		text-align: center
	}

	#home .about__content {
		align-items: center
	}
}

#home .services {
	width: 100vw;
	background: #fbf8f1;
	padding-left: calc(350px + 8vw);
	padding-right: 2rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative
}

#home .services__header {
	text-align: center;
	margin-bottom: 3rem
}

#home .services__title {
	color: #41444b;
	margin-bottom: 1rem
}

#home .services__intro {
	max-width: 600px;
	margin: 0 auto
}

#home .services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
	padding-left: 4rem
}

@media(max-width: 980px) {
	#home .services__grid {
		padding-left: 0
	}
}

#home .service-card {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: flex-start;
	min-height: 370px;
	position: relative
}

#home .service-card__icon {
	width: 90px;
	height: 90px;
	border: 1.5px solid #444;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: #444;
	margin-bottom: 1.5rem;
	background: #faf9f7
}

#home .service-card__title {
	font-size: 24px;
	font-weight: 600;
	color: #222;
	margin-bottom: .7rem
}

#home .service-card__desc {
	margin-bottom: 1.5rem
}

#home .service-card__cta {
	margin-top: auto;
	align-self: center
}

@media(max-width: 1100px) {
	#home .services__grid {
		grid-template-columns: 1fr;
		gap: 2rem
	}
}

#home .dishes {
	width: 100vw;
	background: #fbf8f1;
	padding-left: calc(350px + 8vw);
	padding-right: 5rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative
}

#home .dishes__header {
	text-align: center;
	margin-bottom: 3rem
}

#home .dishes__title {
	color: #41444b;
	margin-bottom: 1rem
}

#home .dishes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 2rem 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 600px;
	position: relative
}

#home .dishes__grid>.dish-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	padding: 2.5rem 1.5rem 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 180px;
	font-size: 1.1rem
}

#home .dishes__carousel-container {
	grid-column: 2/span 2;
	grid-row: 1/span 2;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: stretch
}

#home .dishes__carousel {
	width: 100%;
	height: 100%
}

#home .dish-card--carousel {
	min-height: 100%;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem
}

#home .swiper {
	width: 100%;
	height: 100%;
	border-radius: 12px
}

#home .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #fff
}

@media(max-width: 1100px) {
	#home .dishes__grid {
		display: flex;
		height: 500px;
		max-height: 500px
	}

	#home .dishes__carousel-container {
		grid-column: auto;
		grid-row: auto;
		height: 100%
	}

	#home .dishes__grid>.dish-card {
		display: none
	}

	#home .dishes__carousel-container {
		display: block
	}
}

#home .testimonials {
	width: 100vw;
	background: #fbf8f1;
	padding-left: calc(350px + 8vw);
	padding-right: 2rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative
}

#home .testimonials__header {
	text-align: center;
	margin-bottom: 2.5rem
}

#home .testimonials__title {
	color: #41444b;
	margin-bottom: 1rem
}

#home .testimonials__carousel {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 2rem
}

#home .testimonial-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
	padding: 2.5rem 2rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 180px;
	max-width: 370px;
	margin: 0 auto
}

#home .testimonial-card__text {
	font-family: "Crimson Text", serif;
	font-size: 18px;
	color: #646669;
	margin-bottom: 1.5rem;
	font-style: italic;
	line-height: 1.5;
	max-height: 3lh;
	height: 3lh;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}

#home .testimonial-card__author {
	font-size: 14px;
	color: #f4d699;
	font-weight: 600;
	align-self: flex-end
}

#home .testimonials__carousel .swiper-wrapper {
	align-items: stretch
}

#home .testimonials__carousel .swiper-slide {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: auto
}

@media(max-width: 900px) {
	#home .testimonials__carousel {
		max-width: 100vw;
		padding-left: 0;
		padding-right: 0
	}

	#home .testimonial-card {
		max-width: 95vw;
		padding: 2rem 1rem
	}
}

#home .testimonials__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .7rem;
	margin-top: .5rem;
	min-height: 32px
}

#home .testimonials__pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #f4d699;
	border: 2px solid #f4d699;
	opacity: 1;
	transition: background .3s, border-color .3s, transform .3s;
	margin: 0;
	box-sizing: border-box
}

#home .testimonials__pagination .swiper-pagination-bullet-active {
	background: rgba(0, 0, 0, 0);
	border: 2.5px solid #f4d699;
	transform: scale(1.2)
}

#home .testimonials__pagination .swiper-pagination-bullet:active {
	transform: scale(0.9)
}

@media(max-width: 980px) {
	#menu .hero {
		padding-left: 0rem !important
	}
}

#menu .hero {
	min-height: 100vh;
	width: 100vw;
	background: url("../img/menu-hero.png") center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative
}

#menu .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 2;
	pointer-events: none
}

#menu .hero__content {
	color: #fff;
	padding: 3rem 2.5rem;
	border-radius: 12px;
	text-align: left;
	max-width: 560px
}

#menu .hero__title {
	font-size: 64px !important;
	color: #ffbf46;
	margin-bottom: 1rem
}

#menu .hero__desc {
	font-size: 24px;
	line-height: 32px;
	color: rgba(242, 236, 224, .5);
	margin-bottom: 3rem
}

@media(max-width: 980px) {
	#menu-2 .content {
		padding-left: 0rem !important
	}

	#menu-2 .content__container {
		padding: 4rem 2rem !important
	}
}

#menu-2 .content {
	min-height: 100vh;
	width: 100vw;
	background: rgba(252, 248, 239, .9) url("../img/topography.svg") center/cover no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative
}

@media(max-width: 980px) {
	#menu-2 .content {
		margin-top: 60px
	}
}

#menu-2 .content::before {
	content: "";
	position: absolute;
	inset: 0;
	/*background: linear-gradient(156deg, rgb(84, 78, 64) 0%, rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0) 84%, rgb(34, 27, 14) 100%);*/
	z-index: 2;
	pointer-events: none
}

#menu-2 .content__container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	width: 100%;
	padding: 8rem 2.5rem
}

#menu-2 .content__dishes {
	width: 100%
}

#menu-2 .content__header {
	color: #646669;
	border-radius: 12px;
	text-align: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 2rem
}

#menu-2 .content__header-text {
	max-width: 560px
}

@media(max-width: 800px) {
	#menu-2 .content__header {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem
	}
}

#menu-2 .content__image-container {
	width: 440px;
	height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 70px;
}

#menu-2 .content__image-container .content__image-pattern {
	color: #646669
}

@media(max-width: 800px) {
	#menu-2 .content__image-container {
		width: 80%;
		height: auto
	}
}

#menu-2 .content__image-container img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
	object-fit: cover;
	display: block;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04)
}

#menu-2 .hero__content {
	color: #646669;
	padding: 3rem 2.5rem;
	border-radius: 12px;
	text-align: left;
	max-width: 560px
}

#menu-2 .hero__title {
	font-size: 64px !important;
	color: #f4d699;
	margin-bottom: 1rem
}

#menu-2 .hero__desc {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 3rem
}

.dishes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem 2rem;
	width: 100%;
	margin: 0 auto
}

@media(max-width: 570px) {
	.dishes-grid {
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
		gap: 2rem
	}
}

@media(max-width: 980px) {
	#dish .dish-content {
		padding: 0 1rem !important
	}
}

#dish .dish-content {
	min-height: 100vh;
	width: 100vw;
	background: rgba(252, 248, 239, .9) url("../img/topography.svg") center/cover no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative
}

@media(max-width: 980px) {
	#dish .dish-content {
		margin-top: 60px
	}
}

#dish .dish-content::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(156deg, rgb(84, 78, 64) 0%, rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0) 84%, rgb(34, 27, 14) 100%);
	z-index: 2;
	pointer-events: none
}

#dish .dish-content__container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 4rem;
	width: 100%;
	padding: 7rem 2.5rem 3rem 2.5rem
}

#dish .dish-content__main {
	text-align: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem
}

@media(max-width: 800px) {
	#dish .dish-content__main {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem
	}
}

#dish .dish-content__info {
	flex: 1 1 0;
	min-width: 260px;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1.2rem
}

@media(max-width: 980px) {
	#dish .dish-content__info {
		align-items: center;
		width: 100%;
		max-width: 100%
	}
}

#dish .dish-content__title {
	font-size: 52px;
	color: #f4d699;
	margin-bottom: .7rem
}

#dish .dish-content__desc {
	font-size: 24px;
	color: #41444b;
	margin-bottom: 1.2rem
}

#dish .dish-content__price {
	font-size: 18px;
	color: #A48F6D;
	font-style: italic;
	margin-top: .5rem
}

#dish .dish-content__image {
	width: 440px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 20px
}

#dish .dish-content__image .content__image-pattern {
	color: #646669
}

@media(max-width: 800px) {
	#dish .dish-content__image {
		width: 80%;
		height: auto
	}
}

#dish .dish-content__image img {
	transform: translate(20px, -10px);
	width: 100%;
	height: 100%;
	overflow: hidden;
	/*border-radius: 12px;*/
	object-fit: cover;
	display: block;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .04)
}

#dish .dish-content__others {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	margin-top: 2.5rem
}

#dish .dish-content__others-title {
	color: #a6a6a6;
	margin-bottom: 2.2rem;
	font-size: 42px
}

#dish .dish-others__carousel {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 2.2rem
}

#dish .dish-others__carousel .swiper-wrapper {
	align-items: stretch
}

#dish .dish-others__carousel .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: stretch;
	height: auto
}

#dish .dish-others__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .7rem;
	margin-top: .5rem;
	min-height: 32px
}

#dish .dish-others__pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #f4d699;
	border: 2px solid #f4d699;
	opacity: 1;
	transition: background .3s, border-color .3s, transform .3s;
	margin: 0;
	box-sizing: border-box
}

#dish .dish-others__pagination .swiper-pagination-bullet-active {
	background: rgba(0, 0, 0, 0);
	border: 2.5px solid #f4d699;
	transform: scale(1.2)
}

@media(max-width: 1100px) {
	#dish .dish-content__others {
		max-width: 100%
	}
}

@media(max-width: 700px) {
	#dish .dish-content__container {
		padding: 4rem .5rem 2rem .5rem
	}

	#dish .dish-content__main {
		gap: 1.2rem
	}

	#dish .dish-content__image {
		height: 200px
	}
}

@media(max-width: 980px) {
	#livraison .content {
		padding-left: 0rem !important
	}

	#livraison .content__container {
		padding: 4rem 2rem !important
	}
}

#livraison .content {
	width: 100vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative;
	margin-bottom: 4rem
}

@media(max-width: 980px) {
	#livraison .content {
		margin-top: 60px
	}
}

#livraison .content__header-container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	width: 100%;
	padding: 8rem 2.5rem;
	padding-bottom: 4rem
}

@media(max-width: 980px) {
	#livraison .content__header-container {
		padding-top: 4rem;
		padding-bottom: 2rem
	}
}

#livraison .content__header {
	color: #646669;
	border-radius: 12px;
	text-align: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem
}

#livraison .content__header-text {
	max-width: 560px
}

@media(max-width: 800px) {
	#livraison .content__header {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem
	}
}

#livraison .content__pricing {
	width: 100%;
	padding: 0 2.5rem
}

#livraison .content__pricing-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	max-width: 1200px
}

#livraison .content__pricing-header h2 {
	margin-bottom: 1rem
}

#livraison .content__pricing-header p.content__main-text {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
	max-width: 560px;
	text-align: justify;
}

#livraison .content__pricing-cards {
	display: flex;
	gap: 2rem;
	justify-content: start;
	flex-wrap: wrap;
	margin-top: 2rem
}

#livraison .content__pricing-card {
	background: #f5faff;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(60, 60, 120, .1);
	padding: 2.5rem 2rem 2rem 2rem;
	min-width: 320px;
	max-width: 350px;
	flex: 1 1 320px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	transition: transform .2s, box-shadow .2s
}

#livraison .content__pricing-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 16px 40px rgba(60, 60, 120, .18)
}

#livraison .content__pricing-card--free {
	background: #fff;
	color: #0a2540
}

#livraison .content__pricing-card--premium {
	background: #fff;
	color: #3d1255
}

#livraison .content__pricing-card-header {
	margin-bottom: 1.2rem
}

#livraison .content__pricing-card-header .content__pricing-card-type {
	display: inline-block;
	border-radius: 6px;
	padding: .2em .8em;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 1px;
	background: hsla(0, 0%, 100%, .5)
}

#livraison .content__pricing-card-price {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1.2rem
}

#livraison .content__pricing-card-price span {
	font-size: 1.2rem;
	font-weight: 400;
	margin-left: .2em
}

#livraison .content__pricing-card-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0
}

#livraison .content__pricing-card-list li {
	margin-bottom: .7rem;
	position: relative;
	padding-left: 1.5em;
	font-family: "Crimson Text", serif
}

#livraison .content__pricing-card-list li::before {
	content: "✔";
	color: #2ecc40;
	position: absolute;
	left: 0;
	font-size: 1.1em
}

#livraison .content__pricing-card-note {
	font-size: .95rem;
	color: #888;
	margin-bottom: 1.2rem
}

#livraison .content__pricing-card-btn {
	width: 100%;
	background: #181b2c;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 1rem;
	text-align: center;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: auto;
	transition: background .2s
}

#livraison .content__pricing-card-btn:hover {
	background: #2d3250
}

@media(max-width: 980px) {
	#a-partager .content {
		padding-left: 0rem !important
	}

	#a-partager .content__container {
		padding: 4rem 2rem !important
	}
}

#a-partager .content {
	width: 100vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative;
	margin-bottom: 4rem
}

@media(max-width: 980px) {
	#a-partager .content {
		margin-top: 60px
	}
}

#a-partager .content__header-container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	width: 100%;
	padding: 8rem 2.5rem;
	padding-bottom: 4rem
}

@media(max-width: 980px) {
	#a-partager .content__header-container {
		padding-top: 4rem;
		padding-bottom: 2rem
	}
}

#a-partager .content__header {
	color: #646669;
	border-radius: 12px;
	text-align: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem
}

#a-partager .content__header-text {
	max-width: 560px
}

@media(max-width: 800px) {
	#a-partager .content__header {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem
	}
}

#a-partager .content__main {
	width: 100%;
	padding: 0 2.5rem
}

#a-partager .content__main-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	max-width: 1200px
}

#a-partager .content__main-header h2 {
	margin-bottom: 1rem
}

#a-partager .content__main-header p {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
	max-width: 560px
}

#a-partager .content__main-form {
	width: 100%
}

#a-partager .content__pricing-cards {
	display: flex;
	gap: 2rem;
	justify-content: start;
	flex-wrap: wrap;
	margin-top: 2rem
}

#a-partager .dishes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 2rem;
	width: 100%;
	margin: 0 auto
}

@media(max-width: 1200px) {
	#a-partager .dishes-grid {
		grid-template-columns: repeat(2, 1fr);
		place-items: center;
		gap: 2rem
	}
}

@media(max-width: 570px) {
	#a-partager .dishes-grid {
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
		gap: 2rem
	}
}

@media(max-width: 980px) {
	#contact .content {
		padding-left: 0rem !important
	}

	#contact .content__container {
		padding: 4rem 2rem !important
	}
}

#contact .content {
	width: 100vw;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	margin-left: 0;
	padding-left: calc(350px + 2vw);
	position: relative;
	margin-bottom: 4rem
}

@media(max-width: 980px) {
	#contact .content {
		margin-top: 60px
	}
}

#contact .content__header-container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	width: 100%;
	padding: 8rem 2.5rem;
	padding-bottom: 4rem
}

@media(max-width: 980px) {
	#contact .content__header-container {
		padding-top: 4rem;
		padding-bottom: 2rem
	}
}

#contact .content__header {
	color: #646669;
	border-radius: 12px;
	text-align: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem
}

#contact .content__header-text {
	max-width: 560px
}

@media(max-width: 800px) {
	#contact .content__header {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2rem
	}
}

#contact .content__main {
	width: 100%;
	padding: 0 2.5rem
}

#contact .content__main-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 2rem;
	max-width: 1200px
}

#contact .content__main-header h2 {
	margin-bottom: 1rem
}

#contact .content__main-header p.content__main-text {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
	max-width: 560px
}

#contact .content__main-form {
	width: 100%
}

.contact-form {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem
}

.contact-form__row {
	display: flex;
	gap: 2.5rem
}

@media(max-width: 900px) {
	.contact-form__row {
		flex-direction: column;
		gap: 1.5rem
	}
}

.contact-form__group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: .7rem
}

.contact-form__group--full {
	flex: 2
}

.contact-form__group label {
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	color: #646669;
	margin-bottom: .2rem;
	font-weight: 400
}

.contact-form__group input,
.contact-form__group textarea {
	border: none;
	border-bottom: 2px solid #b9b1b1;
	background: rgba(0, 0, 0, 0);
	font-size: 1.1rem;
	padding: .7rem 0 .4rem 0;
	font-family: "Montserrat", sans-serif;
	color: #646669;
	outline: none;
	transition: border-color .2s;
	resize: none
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
	border-bottom: 2px solid #f4d699
}

.contact-form__group textarea {
	min-height: 90px;
	max-width: 100%
}

.contact-form__actions {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem
}

.contact-form__submit {
	background: #f4d699;
	color: #fff;
	border: none;
	border-radius: 2rem;
	padding: .8rem 2.5rem;
	font-size: 1.1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	letter-spacing: .1em;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(180, 160, 200, .08);
	transition: background .2s, box-shadow .2s
}

.contact-form__submit:hover {
	background: hsl(40.2197802198, 80.5309734513%, 70.8431372549%);
	box-shadow: 0 4px 16px rgba(180, 160, 200, .13)
}
