:root {
  scroll-behavior: unset;
  color-scheme: light only;

  --primary: #494A29;
  --primary-rgb: 73, 74, 100;

  /*--primary: #74261A;*/
  /*--primary-rgb: 116, 38, 26;*/

  --secondary: #A4A06B;
  --secondary-rgb: 164, 160, 107;

  --ternary: #F5F5F5;
  --ternary-rgb: 245, 245, 245;

  --dark: #100503;
  --dark-rgb: 16, 5, 3;

  --light: #F7F4EC;
  --light-rgb: 247, 244, 236;

  --black: #000;
  --black-rgb: 0, 0, 0;

  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;

  --gray-light: #E8E8E8;
  --gray-light-rgb: 232, 232, 23;

  --gray: #CBCBCB;
  --gray-rgb: 203, 203, 203;

  --gray-dark: #838383;
  --gray-dark-rgb: 131, 131, 131;

  --border-radius: .25rem;
  --box-shadow: 0 .5rem 1rem rgba(var(--primary-rgb), .15);

  --link-color:       var(--primary);
  --link-hover-color: var(--secondary);

  --body-bg-color: #f8f4ec;
  --body-font-size: 1em;

  --nav-height:  65px;

  --em-gutter-x: 62px; /*31px on each side*/
  --bs-gutter-x: var(--em-gutter-x);

  --scrollbar-width: calc(100vw - 100%);
  --app-height: 100%;

  --font-family-primary: "NeueMontreal";
  --font-family-secondary: "Columba Text Pro";
  --font-family-ternary: "Karme Serif";
  --font-weight-light: 300; /*was 300*/
  --font-weight-regular: normal;
  --font-weight-medium: 500;
  --font-weight-bold: bold; /*was bold*/

  /* actually sets slide shadow that should match background color of the element behind th slider */
  --posters-slider-shadow-bg-color: #000;
  /* width of the swiper container (image) */
  /* height of the swiper container (image) */
  --posters-slider-height: auto;
  --overlay: rgba(0, 0, 0, .2);
}


@media (min-width: 992px) {
  :root {
    --em-gutter-x: 80px;
  }
}

@media (min-width: 1200px) {
  :root {
    --em-gutter-x: 90px;
  }
}

@media (min-width: 1400px) {
  :root {
    --em-gutter-x: 110px;
  }
}

@media (min-width: 1800px) {
  :root {
    --em-gutter-x: 130px;  /*65 on each side*/
  }
}

@media (min-width: 2560px) {
  :root {
    --em-gutter-x: 10rem;
  }
}



/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

*, ::after, ::before {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  height: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /*virtual-keyboard: overlay-content;*/
}

body {
  min-height: 100%;
  /* Allows you to scroll below the viewport; default value is visible */
  overflow-x: hidden;
  overflow-y: scroll;
  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*Custom scrollbar*/
/** {*/
/*  scrollbar-width: thin;*/
/*  scrollbar-color: var(--primary) var(--secondary);*/
/*}*/

/**::-webkit-scrollbar {*/
/*  width: 8px;*/
/*  height: 8px;*/
/*}*/

/**::-webkit-scrollbar-track {*/
/*  border-radius: 16px;*/
/*  background: rgba(var(--secondary-rgb), 0.25);*/
/*}*/

/**::-webkit-scrollbar-thumb {*/
/*  background-color: var(--primary);*/
/*  border-radius: 16px;*/
/*}*/

/*::-webkit-scrollbar-thumb:hover {*/
/*  background: var(--secondary);*/
/*}*/


body,
html {
  padding: 0;
  margin: 0;

  background-color: var(--body-bg-color);
  color: var(--dark);

  font-family: var(--font-family-primary), sans-serif;
  font-weight: var(--font-weight-regular);
  font-style: normal;
  font-size: 1em;
  line-height: 120%;

  text-rendering: geometricPrecision;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

html.em-mod-touch * {
  background-attachment: scroll !important;
}


/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-block-start: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
  Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
button {
  cursor: pointer;
  -webkit-appearance: button;
  appearance: auto;
}

input[type=checkbox],
input[type=radio],
legend {
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: auto;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

input[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

::-webkit-file-upload-button {
  appearance: auto;
  font: inherit;
}

::file-selector-button {
  appearance: auto;
  font: inherit;
}

::selection {
  color: var(--light);
  background: var(--dark);
  text-shadow: none;
}

img::selection,
svg::selection {
  background: transparent;
}

p {
  font-size: 16px;
  font-family: var(--font-family-primary), sans-serif;
  color: var(--black);
  line-height: 120%;
  overflow-wrap: break-word;
  /*  hyphens: auto;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary), sans-serif;
  font-weight: var(--font-weight-regular);
  color: var(--black);
  font-style: normal;
  line-height: 120%;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit
}

a {
  font-family: var(--font-family-primary), sans-serif;
  color: var(--link-color);
  /*  text-decoration: none;*/
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease
}

a:hover {
  color: var(--link-hover-color);
}

a,
a div,
a span,
button,
button div,
button span,
input,
textarea,
.touch-action {
  -ms-touch-action: manipulation;
  touch-action: manipulation; /*disable the delay of click events caused by support for the double-tap to zoom gesture. */
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

/*Force Hand Cursor over Clickable Items*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.pointer,
.clickable,
.tappable {
  cursor: pointer;
}

/*
  Improve media defaults
*/
img, picture, video, canvas, svg {
  display: inline-flex;
  max-width: 100%;
}

img {
  image-rendering: -moz-crisp-edges;               /* For Firefox */
  image-rendering: -o-crisp-edges;                 /* For Opera */
  image-rendering: optimizeQuality;                /* Correct spelling */
  -ms-interpolation-mode: nearest-neighbor;        /* For IE */
  border-style: none;
  display: inline-flex;
  height: auto;
  vertical-align: middle;
  max-width: 100%;
}

/*
  Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* ==========================================================================
   Author's custom styles
========================================================================== */
.cv-auto {
  content-visibility: auto;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
  /*  animation: none !important;
    transition: none !important;*/
}

/*stop interaction with the page when page is loading*/
/*or when the search is open*/
body.is-loading,
body.is-loading * {
  pointer-events: none !important;
}


/*Helpers*/
.container-em,
.em-container {
  position: relative;
  padding-inline: calc(var(--em-gutter-x) * .5);
  margin-inline: auto;
}


/* Loader */
html .loader {
  display: flex;
}

.loader {
  pointer-events: none;
}

.loader {
  z-index: 2500;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loader_panel {
  z-index: 1;
  width: 100%;
  height: 50%;
  background-color: var(--primary);
}

.loader_panel.is-1 {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}

.loader_panel.is-2 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.loader_line {
  z-index: 2;
  width: 0;
  height: 1px;
  background-color: var(--light);
  margin-block-start: auto;
  margin-block-end: auto;
  position: relative;
}

.loader_number {
  color: var(--light);
  font-family: var(--font-family-ternary), sans-serif;
  text-align: end;
  padding-inline-start: .3em;
  padding-inline-end: .3em;
  font-size: 6em;
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  margin-block-end: 0;
}
/*End Helpers*/

.o-scroll{
  position: relative;
  overflow:hidden
}

/*Hover animation with  locomotive*/
.o-title {
  perspective: 600px;
  -webkit-perspective: 600px
}

.o-title_line {
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: opacity .8s cubic-bezier(.215,.61,.355,1), transform .8s cubic-bezier(.215,.61,.355,1);
}

.o-title.is-inview .o-title_line {
  opacity: 1;
  transform: none;
}



/* FULLSCREEN MENU */
/* Navigation Overlay */
.c-nav {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 901;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s 0.85s;
}

.has-nav-open .c-nav {
  visibility: visible;
  transition-delay: 0s;
}

/*background transition*/
.c-nav_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-nav_background::before,
.c-nav_background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_background::before {
  background-color: rgba( var(--secondary-rgb), .7);
  transition-delay: 0.25s;
  z-index: 1;
}

.c-nav_background::after {
  background-color: var(--primary); /*was #000*/
  transition-delay: 0.10s;
  z-index: 3;
}

/*@media (max-width: 575px) {
  .c-nav_background::after {
    bottom: 70px;
  }
}*/

.has-nav-open .c-nav_background::before,
.has-nav-open .c-nav_background::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.has-nav-open .c-nav_background::before {
  transition-delay: 0s;
}

.has-nav-open .c-nav_background::after {
  transition-delay: 0.15s;
}

/*Navigation container*/
.c-nav_list-wrap {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding-inline: calc(var(--em-gutter-x) * .5);
  padding-block: calc(var(--em-gutter-x) * .5);
  z-index: 4;
  display: flex;
  align-items: center;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s 0.6s;
}

.has-nav-open .c-nav_list-wrap {
  transition-delay: 0s;
  visibility: visible;
}


.c-nav_list {
  position: relative;
  list-style: none;
  z-index: 4;
  margin-block-end: 0;
  padding: 0;
  counter-reset: navcounter;
  /*
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;*/
}

/*List item element on menu*/
.c-nav_item {
  position: relative;
  margin-block-end: 40px;
  opacity: 0;

  -webkit-transform: translateX(-100%) translateX(-7.5rem);
  -ms-transform: translateX(-100%) translateX(-7.5rem);
  transform: translateX(-100%) translateX(-7.5rem);

  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_item:last-child {
  margin-block-end: 0;
}

.c-nav_item:nth-child(1) {
  transition-delay: 0.2s;
}

.c-nav_item:nth-child(2) {
  transition-delay: 0.1s;
}

.c-nav_item:nth-child(3) {
  transition-delay: 0.0666666667s;
}

.c-nav_item:nth-child(4) {
  transition-delay: 0.05s;
}

.c-nav_item:nth-child(5) {
  transition-delay: 0.04s;
}

.c-nav_item:nth-child(6) {
  transition-delay: 0.0333333333s;
}

.c-nav_item:nth-child(7) {
  transition-delay: 0.0285714286s;
}

.c-nav_item:nth-child(8) {
  transition-delay: 0.025s;
}

.c-nav_item:nth-child(9) {
  transition-delay: 0.0222222222s;
}

.c-nav_item:nth-child(10) {
  transition-delay: 0.02s;
}

.c-nav_item:nth-child(11) {
  transition-delay: 0.0181818182s;
}

.c-nav_item:nth-child(12) {
  transition-delay: 0.0166666667s;
}

.has-nav-open .c-nav_item {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.has-nav-open .c-nav_item:nth-child(1) {
  transition-delay: 0.19s;
}

.has-nav-open .c-nav_item:nth-child(2) {
  transition-delay: 0.23s;
}

.has-nav-open .c-nav_item:nth-child(3) {
  transition-delay: 0.27s;
}

.has-nav-open .c-nav_item:nth-child(4) {
  transition-delay: 0.31s;
}

.has-nav-open .c-nav_item:nth-child(5) {
  transition-delay: 0.35s;
}

.has-nav-open .c-nav_item:nth-child(6) {
  transition-delay: 0.39s;
}

.has-nav-open .c-nav_item:nth-child(7) {
  transition-delay: 0.43s;
}

.has-nav-open .c-nav_item:nth-child(8) {
  transition-delay: 0.47s;
}

.has-nav-open .c-nav_item:nth-child(9) {
  transition-delay: 0.51s;
}

.has-nav-open .c-nav_item:nth-child(10) {
  transition-delay: 0.55s;
}

.has-nav-open .c-nav_item:nth-child(11) {
  transition-delay: 0.59s;
}

.has-nav-open .c-nav_item:nth-child(12) {
  transition-delay: 0.63s;
}


/*Item menu link*/
.c-nav_link {
  font-family: var(--font-family-secondary), serif;
  color: var(--light);
  text-decoration: none;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*Close btn*/
.c-nav_close {
  --bs-btn-close-color: var(--light);
  --bs-btn-close-opacity: 1;
  width: 2.5em;
  height: 2.5em;
  background-size: 2.5em;

  position: absolute;
  top: calc(var(--em-gutter-x) * .5);
  right: calc(var(--em-gutter-x) * .5);

  opacity: 0;
  transform: translateX(-100%) translateX(8.5rem);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_close {
  transition-delay: 0.25s;
}

.has-nav-open .c-nav_close {
  transition-delay: 0s;
  transform: translateX(0);
  opacity: 1;
}
/* Page navigation end */


/*START - Author styles*/

/*grid slider - right*/
.content-title,
.content-description {
  line-height: 125%;
  font-weight: normal;
  font-size: 18px;
  margin-block-end: 34px;
}

.content-description {
  font-size: 14px;
  margin-block-end: 44px;
}


/*section content - left*/
.section-content-wrap {
  /*in one place is 40 in another is 47 i took the average*/
  padding-block-end: 44px;
}

.section-title,
.section-subtitle {
  font-family: var(--font-family-secondary), sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-block-end: 0;
}

.section-title {
  font-size: 40px;
}

.slider-split-wrapper {
  padding-block: 34px;
}

@media (min-width: 992px) {
  .slider-header {
    margin-block-start: 25px;
    margin-block-end: 0;
  }

  .section-title {
    font-size: 80px;
  }

  .section-subtitle {
    font-size: 40px;
  }

  .content-title {
    font-size: 30px;
    margin-block-end: 44px;
  }

  .content-description {
    font-size: 18px;
    margin-block-end: 56px;
  }

  .slider-split-wrapper {
    padding-block: 94px;
  }

}


/*Book now btn*/
.book-now-wrap {
  position: fixed;
  bottom: 16px;
  z-index: 2;
  right: calc(var(--em-gutter-x) * 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.btn-book-now {
  position: relative;
  width: 111px;
  height: 111px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background-color: #62231A;
  color: #BC4D38;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 5rem;
  text-decoration: underline;
  white-space: nowrap;
}

.btn-book-now:hover {
  background-color: var(--light);
  color: var(--primary);
  border-color: var(--primary);
}

@media (min-width: 768px) {
  .book-now-wrap {
     width: 175px;
     height: 213px;
  }

  .btn-book-now {
    width: 124px;
    height: 124px;
  }

  .btn-book-now::after {
    content: "";
    position: absolute;
    right: -51px;
    top: -89px;
    z-index: 1;
    height: 156px;
    width: 127px;
    background-image: url('../img/general/bird_red.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }
}


/*Header*/
.grid-wrap {
  --grid-gap: 6px; /*or 12px*/
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--grid-gap);
  overflow: hidden;
}

.grid-header {
  position: relative;
  grid-gap: 0;
  grid-template-rows: 100svh;
  grid-auto-rows: 100svh;
}

.hero-header {
  background-color: #494A29;
  background-repeat: no-repeat;
  background-image: url(https://savoy.al/wp-content/uploads/2025/01/pattern.png);
  background-size: cover;
	
	
/*   background-color: #494A29;
  background-repeat: no-repeat;
  background-image: url(../img/general/flower.svg);
  background-position-x: 20%;
  background-position-y: calc(100% - 210px); */
/*  background-size: contain;*/
}

.header-bg {
/*  background-repeat: no-repeat;
  background-image: url("../img/general/flower.svg");
  background-position-x: -50%;
  background-position-y: -25%;*/
}

.header-element-right {
  width: 100%;
  height: 100%;
}

.header-element-left {
  position: relative;
  width: 100%;
  height: 100%;
  padding-inline: calc(var(--em-gutter-x) * .5);
  padding-block: calc(var(--em-gutter-x) * .25);
  padding-inline-end: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header-text {
  font-size: 35px;
  line-height: 125%;
  color: var(--secondary);
  max-width: 555px;
  margin-block-end: 58px;
}

.header-element-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*.hero-header .right-part {*/
/*  background-image: url(../img/general/logo/header-mobile.jpg);*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-size: cover;*/
/*}*/

/*<Nav>*/
.header-nav {
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: #B9B57A;
  --bs-navbar-hover-color: var(--dark);
  --bs-navbar-nav-link-padding-x: 0.25rem;
}

.header-nav .navbar-nav {
  --bs-nav-link-padding-y: 0;
  --bs-nav-link-font-weight: normal;
  --bs-nav-link-font-size: 20px;
  justify-content: space-between;
  width: 100%;
  gap: 3px;
}

.header-nav .navbar-nav .nav-link {
  line-height: 120%;
  font-family: var(--font-family-secondary), sans-serif;
  white-space: nowrap;
}


/*mobile logo and btn*/
.mobile-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
	z-index: 1;
}

.btn-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  color: #b9b57a;
  font-size: 20px;
  line-height: 130%;
  font-family: var(--font-family-secondary), sans-serif;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .grid-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1400px) {
  .grid-wrap {
    grid-template-columns: 1fr 57.545%;
  }

  .grid-header .col-item.right-part {
    padding-left: var(--grid-gap);
  }
}
/*</Nav>*/

/*<About>*/
.about-wrapper {
  /*padding-block: 94px;*/
}

.about-wrapper .left-part {
  background-image: url("../img/general/bird.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
}

.about-header {
  max-width: 940px;
}
/*</About>*/

/*<Menu>*/
.menu-wrapper {
  margin-block-start: 14px;
}

.menu-grid-container {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1.325fr;
  gap: 0;
  text-align: center;
  /*border-inline-start: 1px solid #F0EDE4;*/
  border-block-end: 1px solid #1C1516;
/*  box-shadow: 0 1px 0 0.0005rem #1C1516;*/
  counter-reset: menucounter;
  overflow: visible;
}

/* Each grid item */
.menu-grid-container .item {
  /*border-block-end: 1px solid #000; !* Underline each item *!*/
  padding-inline: calc(var(--em-gutter-x) * .5);
  padding-block: 26px 12px;
  text-align: start;
/*  box-shadow: 0 1px 0 0.0005rem #1C1516;*/
  border-block-end: 1px solid #1C1516;
  margin-block-end: -1px;
}

.menu-item {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  text-decoration: none;
  justify-self: flex-start;
  position: relative;
  padding-inline-end: 68px;
}

.menu-item:after {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 66px;
  height: 80px;
  background-image: url("../img/general/bird_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0; /* Initially hidden */
  transform: translateY(-12px); /* Start slightly down */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
  /*z-index: -1;*/
}

.menu-item .menu-index,
.menu-item .menu-label {
  font-size: 33px;
  color: #1C1516;
  font-family: var(--font-family-secondary), serif;
  font-weight: normal;
  white-space: nowrap;
}

.menu-item .menu-index {
  top: 0;
  line-height: 1.75;
  margin-inline-end: 8px;
}

.menu-item .menu-label {
  font-size: 35px;
  margin: 0;
}

.hover-underline-animation {
  display: inline-flex;
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 4px;
  left: 0;
  background-color: #1C1516;
  transition: transform 0.3s ease-out;
  transform-origin: bottom right;
}

/*show bird*/
.menu-item:hover::after {
  opacity: 1; /* Fully visible on hover */
  transform: translateY(-50%); /* Slide up */
}

/*show underline*/
.menu-item:hover .hover-underline-animation::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}


/* Mobile view */
@media (max-width: 991px) {
  .menu-grid-container {
    grid-template-columns: 1fr; /* Single column on mobile */
    grid-template-rows: none; /* Let rows automatically adjust */
  }

  /* Remove manual reordering on mobile */
  .menu-grid-container .item {
    grid-column: unset;
    grid-row: unset;
  }

  .menu-grid-container .item:last-child {
    border-block-end-width: 0;
  }

  .menu-item .menu-index {
    display: none;
  }
}

@media (min-width: 992px) {

  .menu-wrapper {
    margin-block-start: 61px;
  }

  .menu-grid-container .item {
    /*padding-block: calc(var(--em-gutter-x) * .25);*/
    padding-block: 20px;
  }

  .menu-grid-container .item:nth-child(odd) {
    padding-inline-end: 0;
  }

  .menu-grid-container .item:nth-child(even) {
    padding-inline-start: 0;
  }

  .menu-item .menu-label {
    font-size: 64px;
  }

  .menu-item {
    padding-inline-end: 112px;
  }

  .menu-item:after {
    width: 93px;
    height: 112px;
  }
}

@media (min-width: 1790px) {

  .menu-item .menu-label {
    font-size: 70px;
  }

  .menu-item {
    padding-inline-end: 131px; /*112 image + 19 px margin*/
  }

  .menu-item:after {
    width: 112px;
    height: 138px;
  }
}
/*</Menu>*/


/*<Video>*/
.video-wrapper {
  padding-block-start: 92px;
  padding-block-end: 77px;
  padding-inline: 0;
}
.poster {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 461px;
  max-height: 100svh;
  overflow: hidden;
  margin-block-end: 0;
}

.poster--overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.55);
  z-index: 0;
}

.poster--grayscale .poster-img {
  filter: grayscale(100%);
}

.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  z-index: 0;
}

.poster-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.poster-icon,
.poster-play-btn {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  display: inline-flex;
  width: 33px;
  height: 37px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.poster-play-btn {
  background: url(../img/general/play.svg) center center no-repeat;
  background-size: contain;
}

.poster.active .poster-video {
  opacity: 1;
  z-index: 1;
}
.poster.active .poster-play-btn {
  z-index: -1;
}

.poster.active.pause .poster-play-btn {
  z-index: 1;
  pointer-events: none;
  background-image: url(../img/general/pause-circle.svg);
}

@media (min-width: 992px) {
  .video-wrapper {
    padding-block: 129px;
    padding-inline: initial;
  }

  .poster {
    height: 100svh;
    max-height: 854px;
    margin-block-end: 12px;
  }

  .poster-icon,
  .poster-play-btn {
    width: 74px;
    height: 84px;
  }
}
/*</Video>*/

/*<Poster>*/
.figure-hero {
  display: block;
  margin-block: 0;
}

.img-hero {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  height: 100svh;
  max-height: 756px;
  overflow: hidden;
  margin-block-end: 0;
}
@media (max-width: 991px) {
  .poster-wrapper {
    padding-inline: 0;
  }

  .img-hero {
    max-height: 461px;
  }
}
/*</Poster>*/

/*Swiper*/

/*Event swiper*/
.slider-event {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.is-event-list {
  width: 100%;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  padding-block-start: 28px;
}

.swiper.is-event {
  width: 100%;
  position: relative;
  overflow: visible;

  /*display: flex;*/
  /*flex-direction: row;*/
  /*flex-wrap: nowrap;*/
}

.swiper-wrapper.is-event {
  justify-content: flex-start;
  align-items: center;
  display: flex;

  /*flex-direction: row;*/
  /*flex-wrap: nowrap;*/
}

.swiper-wrapper.is-event * {
  user-select: none;
}

.swiper-slide.is-event {
  flex: none;
  text-align: center;
  width: auto;
  height: auto;
}

/* Event Slider */
.swiper-slide.is-event:nth-child(even) {
  width: 378px;
  /*padding-block-end: 66px;*/
}

.swiper-slide.is-event:nth-child(odd) {
  width: 403px;
  align-self: flex-end;
}

/*Fist slide*/
.swiper-slide.is-event:nth-child(1) {
  width:554px;
}

.swiper-slide.is-event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team_photo-height {
  width: 100%;
  position: relative;
  margin-block-start: 13px;
  margin-block-end: 17px;
}

.team_name-info p {
  text-align: start;
  font-size: 20px;
  line-height: 125%;
  margin-block-end: 0;
  max-width: 347px;
}

.team_photo-height {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.6s;
}

@media (pointer: fine) {
  .team_photo-height.scaled {
    clip-path: polygon(4% 4%, 96% 4%, 96% 96%, 4% 96%);
    transition: all 0.6s;
  }
}

@media (max-width: 991px) {
  .is-event-list {
    padding-block-start: 0;
  }

  /* Event Slider */
  .swiper-slide.is-event:nth-child(even) {
    width: 278px;
    /*padding-block-end: 66px;*/
  }

  .swiper-slide.is-event:nth-child(odd) {
    width: 224px;
    align-self: flex-end;
  }

  /*Fist slide*/
  .swiper-slide.is-event:nth-child(1) {
    width:330px;
  }

  .swiper-slide.is-event:has(.team_name-info) img {
    max-height: 278px;
  }

  .team_name-info p {
    font-size: 12px;
  }
}



/*Reservations*/
.ticker-wrapper {
  position: relative;
  padding-block: 200px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

/*Float window event*/
.image--style {
  border-radius: 30vh 30vh 0 0;
  width: 100%;
  height: 587px;
  max-width: 457px;
  cursor: pointer;
  display: inline-grid;
  overflow: hidden;
  position: relative;
  margin-block-end: 56px;
}

.image--style>.image__element,
.image__wrap {
  border-radius: inherit;
  grid-area: 1/1/2/2;
  height: 100%;
  position: relative;
  transform-origin: inherit;
  width: 100%;
  will-change: transform
}

.image__wrap {
  overflow: hidden
}

.image__element {
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  width: 100%
}

.event-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-block-end: 0;
}

.event-float .figure-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-float .figure-caption .title {
  font-family: var(--font-family-secondary), sans-serif;
  font-size: 40px;
  margin-block-end: 16px;
  color: #000405;
}

.event-float .figure-caption .subtitle {
  font-size: 20px;
  line-height: 125%;
  margin-block-end: 16px;
  color: #100503;
  max-width: 347px;
}


/*<Marque>*/
@keyframes scroll {
  to {
    transform: translate3d(-50%,0,0)
  }
}

.scroll {
  animation: scroll 10s linear infinite;
}

.reverse {
  animation-direction: reverse;
}

.marquee {
  --marquee-gap: 4rem;
  width: 100%;
  display: flex;
  grid-column-gap: var(--marquee-gap);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.marquee__fixed {
  position: absolute;
  top: 38.33333333%;
}

.marquee-content {
  min-width: 100%;
  grid-column-gap: var(--marquee-gap);
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
  display: flex;
  will-change: transform;
  text-overflow: ellipsis;
}

.text-block {
  color: #000405;
  text-transform: capitalize;
  font-family: var(--font-family-secondary), sans-serif;
  font-size: 101px;
  font-weight: normal;
  line-height: 120%;
  position: relative;
  white-space: nowrap;
}

.text-block::after {
  position: absolute;
  right: -3.5rem;
  top: 0;
  text-align: end;
  content: "/";
}
/*</Marque>*/

@media (max-width: 991px) {

  .ticker-wrapper {
    padding-block: 42px;
  }

  .event-float .image--style {
    order: 2;
  }

  .event-float .figure-caption {
    order: 1
  }

  .ticker-wrapper .marquee {
    order: 2;
  }

  .ticker-wrapper .event-float-wrapper {
    order: 1
  }

  .marquee__fixed {
    position: relative;
    top: auto;
  }

  .text-block {
    font-size: 40px;
  }

  .image--style {
    height: 428px;
    max-width: 334px;
    margin-block-end: 38px;
  }

  .event-float .figure-caption {
    margin-block-end: 57px;
  }

  .event-float .figure-caption .title {
    font-size: 18px;
    margin-block-end: 0;
  }

  .event-float .figure-caption .subtitle {
    font-size: 14px;
    margin-block-end: 0;
    max-width: 300px;
  }

}


/*Savoy swiper*/

.osteria-header {
  max-width: 620px;
}

.savoy-swiper {
  position: relative;
  overflow: visible;
  clip-path: inset( 0 -100vw 0 0 );
  --swiper-active-img-height: 435px;
  --swiper-active-img-width: 345px;
  --swiper-default-img-height: 280px;
  --swiper-default-img-width: 320px;
}

.savoy-swiper .swiper-wrapper {
  width: 100%;
  flex: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.savoy-swiper .swiper-slide {
  width: 332px;
  height: var(--swiper-default-img-height);
  transition: height .4s cubic-bezier(.25,.46,.45,.94);
}


.savoy-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.savoy-swiper .swiper-slide-prev,
.savoy-swiper .swiper-slide-active,
.savoy-swiper .swiper-slide-duplicate-active {
  height: var(--swiper-active-img-height);
}

.step-right-arrow {
  position: absolute;
  right: 0;
  bottom: 40px;
  z-index: 1;
}


/*<ArrowBtn>*/
.button--fenrir {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  /*-webkit-clip-path: circle(50% at 50% 50%);*/
  clip-path: circle(50% at 50% 50%);
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
}

.button--fenrir::before,
.button--fenrir::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--fenrir .progress-wrapper {
  position: absolute;
  width: 70px;
  height: 70px;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir .progress__circle,
.button--fenrir .progress__path {
  fill: none;
  stroke: #838383;
  stroke-width: 1px;
}

.button--fenrir .btn-arrow {
  stroke: #838383;
  transition: stroke 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir .progress__path {
  stroke: #62231A;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir:hover .progress-wrapper {
  transform: scale3d(1.15, 1.15, 1);
}

.button--fenrir:focus-visible .progress__circle {
  fill: rgba(252,196,63,0.4);
}

.button--fenrir:hover .progress__path {
  stroke-dashoffset: 0;
}

.button--fenrir:hover .btn-arrow {
  stroke: #62231A;
}
/*</ArrowBtn>*/

@media (min-width: 991px) {
  .savoy-swiper {
    overflow: hidden;
    --swiper-active-img-height: 605px;
    --swiper-active-img-width: 461px;
    --swiper-default-img-height: 390px;
    --swiper-default-img-width: 535px;
  }

  .savoy-swiper .swiper-slide {
    width: 100%;
  }

  .step-right-arrow {
    bottom: 88px;
  }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}
/*</Swiper>*/



/*<Footer>*/
.footer {
  margin-block-start: 43px;
  background-color: var(--primary);
  color: var(--light);
}

.footer-wrapper {
  border-block-end: 1px solid var(--light);
  padding-block-start: 68px;
}

.title-logo {
  font-family: var(--font-family-ternary), sans-serif;
  font-size: 74px;
  line-height: 1;
  font-weight: normal;
  color: var(--light);
  text-decoration: none;
}

.title-logo__main {
  color: var(--secondary);
}

.footer-logo .logo {
  width: 197px;
  height: 55px;
  object-fit: contain;
  object-position: center;
  margin-block-end: 14px;
}

.footer-col {
  padding-block-end: 64px;
}


.footer-header,
.footer-nav__link {
  font-family: var(--font-family-primary), sans-serif;
  padding-inline: 0;
  padding-block: 0;
  color: var(--light);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.footer-header {
  font-size: 16px;
  margin-block-start: 0;
  margin-block-end: 23px;
  text-transform: uppercase;
}

.footer-nav__link.nav-underline {
  text-decoration: underline;
  text-decoration-color: var(--light);
}

.footer-nav__link:hover {
  color: var(--secondary);
}

.copyright {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-block-start: 17px;
  padding-block-end: 23px;
}

.copyright-content {
  font-size: 20px;
  line-height: 149%;
  text-decoration: underline;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: inherit;
}

.copyright-text {
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: inherit;
  margin: 0;
}

@media (max-width: 991px) {
  .footer {
    margin-block-start: 27px;
  }

  .footer-logo .logo {
    width: 199px;
    height: 74px;
  }

  .footer-wrapper {
    border-block-end-width: 0;
    padding-block-start: 88px;
  }


  .footer-header {
    margin-block-end: 9px;
  }

  .copyright {
    flex-direction: column;
    padding-block-start: 20px;
    padding-block-end: 18px ;
  }
}


/*</Footer>*/

/*END - Author styles*/


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}
