*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Raleway", serif;
  background:#ffffff;
  color:#111111;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:1000;
}

.site-header.scrolled{
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.site-header.scrolled .main-nav a{
  color:#2f3136;
}

.site-header.scrolled .main-nav a:hover{
  color:#4D5A3D;
  text-shadow:none;
}

.site-header.scrolled .header-reservation{
  background:#4D5A3D;
  color:#ffffff;
}

.header-inner{
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

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

.logo img{
  height:60px;
  width:auto;
  display:block;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.main-nav a{
  font-size:14px;
  color:#ffffff;
  transition:0.3s ease;
  display:inline-block;
  font-weight:500;
  white-space:nowrap;
}

.main-nav a:hover{
  color:#ffffff;
  transform:translateY(-2px) scale(1.18);
  text-shadow:0 0 18px rgba(255,255,255,0.45);
}

.header-reservation{
  background:
    linear-gradient(
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08)
    ),
    lab(41.51% -2.61 3.56);
  color:#ffffff;
  padding:14px 26px;
  border-radius:100px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.header-reservation:hover{
  background:#494e44;
  transform:translateY(-2px);
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  z-index:1;
  inset:0;
  background:
    radial-gradient(
      80% 70% at 30% 40%,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.6)
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.6)
    );
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#ffffff;
  width:min(800px, 92%);
  padding-top:90px;
}

.hero-subtitle{
  font-size:14px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:20px;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  margin-bottom:24px;
}

.hero-text{
  font-size:20px;
  line-height:1.7;
  margin-bottom:40px;
}

.hero-note{
  margin-top:-18px;
  font-size:14px;
  line-height:1.7;
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.72);
  font-style:italic;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:18px;
}

.btn{
  padding:16px 34px;
  border-radius:100px;
  font-weight:600;
  transition:0.3s;
}

.btn-dark{
  background:
    linear-gradient(
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08)
    ),
    #4D5A3D;

  color:#ffffff !important;
  border:1px solid #4D5A3D;
}

.btn-dark:hover{
  background:hsla(48, 52%, 42%, 0.877);
  color:#ffffff;
}

.btn-light{
  background:#ffffff;
  color:#111111;
}

.btn-light:hover{
  background:#f2f2f2;
}

.btn:hover{
  transform:translateY(-2px);
}

/* FOOTER */

.site-footer{
  background:
    linear-gradient(
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08)
    ),
    lab(41.51% -2.61 3.56);
  color:#ffffff;
  padding:90px 0 40px;
}

.site-footer a{
  color:#ffffff;
  text-decoration:none;
}

.site-footer-hours-section{
  margin-bottom:80px;
}

.footer-hours-title{
  text-align:center;
  font-size:46px;
  font-weight:300;
  letter-spacing:0.08em;
  margin-bottom:50px;
  color:#ffffff;
}

.footer-hours-list{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.footer-hours-item{
  border:1px solid rgba(255,255,255,0.12);
  padding:36px 20px;
  text-align:center;
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.footer-hours-item h3{
  font-size:14px;
  line-height:1.5;
  text-transform:uppercase;
  letter-spacing:0.12em;
  margin-bottom:18px;
  font-weight:500;
  color:#ffffff;
}

.footer-hours-item p{
  font-size:20px;
  font-weight:300;
  color:rgba(255,255,255,0.82);
}

.footer-info{
  border-top:1px solid rgba(255,255,255,0.10);
  padding-top:60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.footer-col span{
  display:block;
  margin-bottom:16px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.22em;
  color:rgba(255,255,255,0.55);
}

.footer-col{
  font-size:18px;
  line-height:1.8;
  font-weight:300;
}

.footer-col a{
  transition:0.3s;
}

.footer-col a:hover{
  color:#dbe6c8;
}

.footer-social{
  text-align:center;
  margin-top:70px;
  font-size:15px;
  color:rgba(255,255,255,0.7);
}

.footer-social a{
  margin:0 14px;
  transition:0.3s;
}

.footer-social a:hover{
  color:#dbe6c8;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.10);
  margin-top:35px;
  padding-top:25px;
  text-align:center;
  font-size:14px;
  color:rgba(255,255,255,0.55);
  line-height:2;
}

.footer-bottom a{
  color:rgba(255,255,255,0.55);
}

.footer-bottom a:hover{
  color:#ffffff;
}

.footer-bottom small{
  opacity:0.7;
}

/* MOBILE */

@media(max-width:1100px){

  .footer-hours-list{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-info{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .footer-hours-title{
    font-size:34px;
  }

  .footer-hours-list{
    grid-template-columns:1fr;
  }

}

/* MOBILE */

@media(max-width:900px){

  .header-inner{
    flex-direction:column;
    height:auto;
    padding:20px 0;
  }

  .main-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .footer-inner{
    flex-direction:column;
  }

}

@media(max-width:768px){
  

  .hero-content{
    padding-top:60px;
  }


  .hero h1{
    font-size:42px;
    line-height:1.08;
    margin-bottom:18px;
  }

  .hero-text{
    font-size:16px;
    line-height:1.65;
    padding:0 18px;
    margin-bottom:18px;
  }

  .hero-note{
    margin-top:0;
    font-size:13px;
    line-height:1.55;
    padding:0 22px;
    color:rgba(255,255,255,0.68);
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:12px;
    margin-top:20px;
  }

  .btn{
    width:220px;
    padding:15px 28px;
  }

}

/* PAGE HERO * pro vsechny stranky*/

/* PAGE HERO */

.page-hero{
  position:relative;
  min-height:240px;
  padding-top:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.08)
    ),
    lab(18.92% -2.72 3.4);
}

.page-hero-content{
  color:#ffffff;
  width:min(900px, 92%);
}

.page-subtitle{
  font-size:12px;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:16px;
  font-weight:500;
}

.page-hero h1{
  font-size:42px;
  line-height:1.08;
  font-weight:500;
  letter-spacing:-0.02em;
}

/* CONTACT PAGE */

.contact-section{
  padding:90px 0 110px;
  background:#ffffff;
}

.contact-intro{
  width:min(920px, 100%);
  margin:0 auto 45px;
  text-align:center;
}

.contact-intro p{
  font-size:21px;
  line-height:1.7;
  font-weight:300;
  color:#2f3136;
  margin-bottom:16px;
}

.contact-notice{
  width:min(920px, 100%);
  margin:0 auto 70px;
  padding:34px 42px;
  background:#f6f7f3;
  border-left:4px solid #4D5A3D;
}

.contact-notice h2{
  font-size:24px;
  font-weight:500;
  color:#4D5A3D;
  margin-bottom:12px;
}

.contact-notice p{
  font-size:17px;
  line-height:1.7;
  font-weight:300;
  color:#2f3136;
}

.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:70px;
  align-items:start;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.contact-card{
  padding:28px 30px;
  border:1px solid #e5e5e5;
  background:#ffffff;
}

.contact-card span{
  display:block;
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#4D5A3D;
  margin-bottom:12px;
  font-weight:500;
}

.contact-card a,
.contact-card p{
  font-size:20px;
  line-height:1.6;
  color:#111111;
  font-weight:300;
}

.contact-card a:hover{
  color:#4D5A3D;
}

.contact-form{
  padding:44px;
  background:#f8f8f6;
  border:1px solid #e8e8e2;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  display:block;
  font-size:13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#4D5A3D;
  margin-bottom:10px;
  font-weight:500;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:1px solid #d9d9d2;
  background:#ffffff;
  padding:16px 18px;
  font-family:"Raleway", sans-serif;
  font-size:16px;
  color:#111111;
  outline:none;
  transition:0.3s;
}

.form-group textarea{
  resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#4D5A3D;
}

.form-group small{
  display:none;
  margin-top:8px;
  font-size:13px;
  color:#b3261e;
}

.form-group.is-error input,
.form-group.is-error textarea{
  border-color:#b3261e;
  background:#fff7f6;
}

.form-group.is-error small{
  display:block;
}

.form-alert{
  display:none;
  margin-bottom:22px;
  padding:14px 18px;
  font-size:15px;
  line-height:1.5;
}

.form-alert.is-error{
  display:block;
  background:#fff0ee;
  color:#9b1c14;
  border:1px solid #f0b7b2;
}

.form-alert.is-success{
  display:block;
  background:#eef6ec;
  color:#2f5d34;
  border:1px solid #bfd8b9;
}

.contact-final{
  margin-top:80px;
  text-align:center;
  font-size:30px;
  font-weight:300;
  color:#4D5A3D;
}

@media(max-width:900px){

  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-form{
    padding:30px;
  }

  .contact-intro p{
    font-size:18px;
  }

}

.form-success-large{
  grid-column:1 / -1;
  text-align:center;
  padding:90px 30px;
  font-size:34px;
  line-height:1.4;
  font-weight:300;
  color:#4D5A3D;
  background:#f6f7f3;
  border:1px solid #dfe5d6;
}

/* CONTACT MAP */

.contact-map-section{
  padding:0 0 120px;
  background:#ffffff;
}

.contact-map-head{
  text-align:center;
  margin-bottom:45px;
}

.contact-map-subtitle{
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#4D5A3D;
  margin-bottom:16px;
  font-weight:500;
}

.contact-map-head h2{
  font-size:48px;
  font-weight:300;
  margin-bottom:28px;
  color:#111111;
}

.contact-map-wrapper{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.contact-map-wrapper iframe{
  width:100%;
  height:540px;
  border:0;
  display:block;
}

@media(max-width:768px){

  .contact-map-head h2{
    font-size:36px;
  }

  .contact-map-wrapper iframe{
    height:420px;
  }

}

/* CAREER PAGE */

.career-section{
  padding:100px 0 120px;
  background:#ffffff;
}

.career-layout{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.career-image img{
 width:100%;
  max-width:520px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  display:block;
  border-radius:28px;
  box-shadow:0 24px
}

.career-lead{
  font-size:36px;
  line-height:1.2;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:18px;
}

.career-text{
  font-size:20px;
  line-height:1.7;
  font-weight:300;
  color:#2f3136;
  margin-bottom:42px;
}

.career-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.career-card{
  padding:30px 34px;
  background:#f8f8f6;
  border:1px solid #e5e5df;
}

.career-card h2{
  font-size:22px;
  font-weight:500;
  color:#4D5A3D;
  margin-bottom:16px;
}

.career-card ul{
  list-style:none;
}

.career-card li{
  font-size:17px;
  line-height:1.8;
  font-weight:300;
}

.career-card li::before{
  content:"– ";
  color:#4D5A3D;
}

.career-cta{
  margin-top:42px;
}

.career-cta p{
  font-size:20px;
  line-height:1.7;
  font-weight:300;
  margin-bottom:52px;
}

.career-cta a{
  color:#4D5A3D;
}

@media(max-width:900px){
  .career-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:1200px){

  .header-inner{
    gap:18px;
  }

  .main-nav{
    gap:14px;
  }

  .main-nav a{
    font-size:13px;
  }

  .header-reservation{
    padding:12px 22px;
  }

}

/* ==========================================
   REFERENCE PAGE
   ========================================== */

.page-reference{
  background:#ffffff;
}

.reference-intro-section{
  padding:90px 0 60px;
  background:#ffffff;
  text-align:center;
}

.reference-subtitle{
  font-size:38px;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:18px;
}

.reference-intro{
  width:min(720px, 92%);
  margin:0 auto 34px;
  font-size:19px;
  line-height:1.8;
  font-weight:300;
  color:#2f3136;
}

.reference-actions{
  margin-bottom:24px;
}

.reference-rating{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  font-size:14px;
}

.reference-rating__stars{
  color:#d4af37;
  letter-spacing:2px;
}

.reference-rating__text{
  color:#2f3136;
}

.rating-google{
  font-weight:600;
}

.rating-google .g1{color:#4285F4;}
.rating-google .g2{color:#EA4335;}
.rating-google .g3{color:#FBBC05;}
.rating-google .g4{color:#4285F4;}
.rating-google .g5{color:#34A853;}
.rating-google .g6{color:#EA4335;}

.reference-section{
  padding:20px 0 120px;
  background:#ffffff;
}

.reference-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.reference-card{
  min-height:520px;
  display:flex;
  flex-direction:column;
  padding:28px;
  background:#f8f8f6;
  border:1px solid #e5e5df;
  color:#111111;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.reference-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.reference-card__top{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-height:150px;
  margin-bottom:14px;
}

.reference-card__avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#4D5A3D;
  color:#ffffff;
  font-weight:500;
  flex-shrink:0;
}

.reference-card__head{
  flex:1;
}

.reference-card h3{
  min-height:54px;
  display:flex;
  align-items:flex-start;
  font-size:21px;
  line-height:1.25;
  font-weight:500;
  color:#4D5A3D;
  margin-bottom:6px;
}

.reference-card__label-space{
  min-height:34px;
}

.reference-card__photo-label{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  margin:0 0 8px;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(176,141,87,.35);
  background:rgba(176,141,87,.10);
  color:#B08D57;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
}

.reference-card__date{
  min-height:18px;
  margin-bottom:8px;
  font-size:13px;
  line-height:1.4;
  color:#777;
  font-weight:300;
}

.reference-card__stars{
  min-height:20px;
  color:#d4af37;
  letter-spacing:2px;
  font-size:15px;
}

.reference-card__text{
  flex:0 0 auto;
  height:112px;
  overflow:hidden;
  margin-bottom:0;
  font-size:16px;
  line-height:1.75;
  font-weight:300;
  color:#2f3136;
}

.reference-card__text-empty{
  opacity:.55;
  font-style:italic;
}

.reference-more,
.reference-more-placeholder{
  min-height:22px;
  margin-top:12px;
}

.reference-more{
  background:none;
  border:0;
  padding:0;
  color:#B08D57;
  font-weight:600;
  letter-spacing:.08em;
  cursor:pointer;
  text-align:left;
  transition:.25s;
}

.reference-more:hover{
  opacity:.7;
}

.reference-card__photos,
.reference-card__photos-placeholder{
  margin-top:16px;
  min-height:116px;
}

.reference-card__photos img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.reference-empty{
  color:#2f3136;
  font-size:18px;
}

.reference-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.reference-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(8px);
}

.reference-modal__box{
  position:relative;
  width:min(820px, 92vw);
  max-height:86vh;
  overflow:auto;
  background:#302f2b;
  color:#ffffff;
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.reference-modal__close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.12);
  color:#ffffff;
  font-size:24px;
  cursor:pointer;
}

.reference-modal__text{
  margin-top:26px;
  font-size:17px;
  line-height:1.85;
  color:rgba(255,255,255,.82);
}

.reference-modal__photos{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:28px;
}

.reference-modal__photos img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

body.modal-open{
  overflow:hidden;
}

@media(max-width:1100px){

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

}

@media(max-width:700px){

  .reference-grid{
    grid-template-columns:1fr;
  }

  .reference-subtitle{
    font-size:30px;
  }

  .reference-rating{
    flex-direction:column;
    gap:6px;
  }

  .reference-card{
    min-height:auto;
  }

  .reference-card__top{
    min-height:auto;
  }

  .reference-card h3{
    min-height:auto;
  }

  .reference-card__text{
    min-height:auto;
    max-height:none;
  }

  .reference-card__photos-placeholder{
    display:none;
  }

  .reference-modal{
    padding:14px;
  }

  .reference-modal__box{
    padding:24px;
  }

}
/* ==========================================
   GALLERY PAGE
   ========================================== */

.page-gallery{
  background:#ffffff;
}


/* ==========================================
   SECTION
   ========================================== */

.gallery-section{
  padding:90px 0 120px;
  background:#ffffff;
}


/* ==========================================
   INTRO
   ========================================== */

.gallery-intro{
  text-align:center;
  margin-bottom:70px;
}

.gallery-intro h2{
  font-size:42px;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:18px;
}

.gallery-intro p{
  width:min(760px, 92%);
  margin:0 auto;
  font-size:19px;
  line-height:1.8;
  font-weight:300;
  color:#2f3136;
}


/* ==========================================
   TOP GRID
   ========================================== */

.gallery-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
  align-items:start;
}


/* ==========================================
   VIDEO
   ========================================== */

.gallery-video{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:#111;
  align-self:start;
}

.gallery-video video{
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  display:block;
}


/* ==========================================
   RIGHT SIDE
   ========================================== */

.gallery-side{
  display:flex;
  flex-direction:column;
  gap:34px;
}


/* ==========================================
   TEXT BOX
   ========================================== */

.gallery-text-box{
  padding:34px;
  background:#f8f8f6;
  border:1px solid #e5e5df;
}

.gallery-text-box h3{
  font-size:36px;
  line-height:1.2;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:24px;
}

.gallery-text-box p{
  font-size:18px;
  line-height:1.72;
  font-weight:300;
  color:#2f3136;
  margin-bottom:18px;
}

.gallery-text-box p:last-child{
  margin-bottom:0;
}


/* ==========================================
   TOP RESTAURANT PHOTOS
   ========================================== */

.gallery-restaurant{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.gallery-restaurant img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:20px;
  display:block;
  transition:.3s;
}

.gallery-restaurant img:hover{
  transform:translateY(-4px);
}


/* ==========================================
   FOOD SECTION
   ========================================== */

.gallery-food-section{
  margin-top:100px;
}

.gallery-food-title{
  text-align:center;
  margin-bottom:50px;
}

.gallery-food-title h2{
  font-size:42px;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:18px;
}

.gallery-food-title p{
  width:min(860px,92%);
  margin:0 auto 18px;
  font-size:18px;
  line-height:1.9;
  font-weight:300;
  color:#2f3136;
}

.gallery-food-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery-food-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:24px;
  display:block;
  transition:.3s;
}

.gallery-food-grid img:hover{
  transform:translateY(-4px);
}


/* ==========================================
   MOBILE
   ========================================== */

@media(max-width:1100px){

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-video{
    max-width:520px;
    margin:0 auto;
  }

}

@media(max-width:700px){

  .gallery-intro h2,
  .gallery-food-title h2,
  .gallery-text-box h3{
    font-size:32px;
  }

  .gallery-text-box{
    padding:30px;
  }

  .gallery-text-box p,
  .gallery-food-title p,
  .gallery-intro p{
    font-size:17px;
  }

  .gallery-restaurant{
    grid-template-columns:1fr;
  }

  .gallery-food-grid{
    grid-template-columns:1fr;
  }

}

/* ==========================================
   DRINKS PAGE
   ========================================== */

.page-drinks{
  background:#ffffff;
}

.drinks-section{
  padding:90px 0 120px;
  background:#ffffff;
}

/* ==========================================
   INTRO
   ========================================== */

.drinks-intro{
  text-align:center;
  margin-bottom:70px;
}

.drinks-kicker{
  font-size:12px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:#4D5A3D;
  margin-bottom:14px;
  font-weight:500;
}

.drinks-intro h2{
  font-size:46px;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:20px;
}

.drinks-intro p:not(.drinks-kicker){
  width:min(760px, 92%);
  margin:0 auto;
  font-size:19px;
  line-height:1.8;
  font-weight:300;
  color:#2f3136;
}

/* ==========================================
   MENU LAYOUT
   ========================================== */

.drinks-menu{
  columns:2;
  column-gap:34px;
}

/* ==========================================
   CATEGORY BOX
   ========================================== */

.drinks-category{
  break-inside:avoid;
  margin-bottom:34px;
  padding:34px;
  background:#f8f8f6;
  border:1px solid #e5e5df;
}

.drinks-category h2{
  font-size:30px;
  line-height:1.2;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:28px;
}

/* ==========================================
   ITEMS
   ========================================== */

.drinks-list{
  display:flex;
  flex-direction:column;
  gap:0;
}

.drinks-item{
  padding:18px 0;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.drinks-item:last-child{
  border-bottom:0;
}

.drinks-item-main{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
}

.drinks-item-title{
  flex:1;
}

.drinks-item-title h3{
  font-size:17px;
  line-height:1.45;
  font-weight:500;
  color:#111111;
}

.drinks-item-title span{
  display:inline-block;
  margin-top:4px;
  font-size:14px;
  color:#777777;
  font-weight:300;
}

.drinks-price{
  white-space:nowrap;
  font-size:17px;
  font-weight:600;
  color:#4D5A3D;
}

.drinks-item p{
  margin-top:8px;
  width:min(520px, 100%);
  font-size:15px;
  line-height:1.7;
  font-weight:300;
  color:#666666;
}

/* ==========================================
   WINE SECTION SPECIAL
   ========================================== */

.drinks-category:nth-child(5) .drinks-item{
  padding:24px 0;
}

.drinks-category:nth-child(5) .drinks-item-title h3{
  font-size:18px;
  line-height:1.5;
}

.drinks-category:nth-child(5) .drinks-item p{
  margin-top:10px;
  font-size:16px;
  line-height:1.8;
  color:#5d5d5d;
}

/* ==========================================
   MOBILE
   ========================================== */

@media(max-width:1000px){

  .drinks-menu{
    columns:1;
  }

}

@media(max-width:700px){

  .drinks-section{
    padding:70px 0 90px;
  }

  .drinks-intro{
    margin-bottom:45px;
  }

  .drinks-intro h2{
    font-size:34px;
  }

  .drinks-intro p:not(.drinks-kicker){
    font-size:17px;
  }

  .drinks-category{
    padding:26px;
  }

  .drinks-category h2{
    font-size:26px;
  }

  .drinks-item-main{
    gap:16px;
  }

  .drinks-item-title h3{
    font-size:16px;
  }

  .drinks-price{
    font-size:16px;
  }

  .drinks-item p{
    font-size:14px;
    line-height:1.65;
  }

}

/* ==========================================
   FOOD MENU PAGE
   ========================================== */

.page-food{
  background:#ffffff;
}

.food-section{
  padding:90px 0 120px;
  background:#ffffff;
}

.food-intro{
  text-align:center;
  margin-bottom:70px;
}

.food-kicker{
  font-size:12px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:#4D5A3D;
  margin-bottom:14px;
  font-weight:500;
}

.food-intro h2{
  font-size:46px;
  font-weight:300;
  color:#4D5A3D;
  margin-bottom:20px;
}

.food-intro p:not(.food-kicker){
  width:min(780px, 92%);
  margin:0 auto;
  font-size:19px;
  line-height:1.8;
  font-weight:300;
  color:#2f3136;
}

/* CATEGORY */

.food-category{
  margin-bottom:90px;
}

.food-category:last-child{
  margin-bottom:0;
}

.food-category-head{
  text-align:center;
  margin-bottom:42px;
}

.food-category-head p{
  min-height:18px;
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#B08D57;
  margin-bottom:12px;
  font-weight:500;
}

.food-category-head h2{
  font-size:38px;
  font-weight:300;
  color:#4D5A3D;
}

/* LIST */

.food-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

/* ITEM */

.food-item{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:24px;
  padding:24px;
  background:#f8f8f6;
  border:1px solid #e5e5df;
  align-items:start;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.food-item:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.food-item-image{
  width:150px;
  aspect-ratio:1 / 1;
  border-radius:22px;
  overflow:hidden;
  background:#e9e9e2;
}

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

.food-item-content{
  min-width:0;
}

.food-item-top{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  margin-bottom:10px;
}

.food-item-top h3{
  font-size:20px;
  line-height:1.35;
  font-weight:600;
  color:#111111;
}

.food-item-top span{
  white-space:nowrap;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#4D5A3D;
}

.food-item-description{
  font-size:16px;
  line-height:1.65;
  font-weight:300;
  font-style:italic;
  color:#555555;
}

.food-item-bottom{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  margin-top:18px;
}

.food-allergens{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#777777;
}

.food-allergens span{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(77,90,61,0.35);
  color:#4D5A3D;
  font-size:12px;
  font-weight:600;
  background:#ffffff;
}

.food-tag{
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  line-height:1;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  color:#4D5A3D;
  background:rgba(77,90,61,0.10);
  border:1px solid rgba(77,90,61,0.20);
}

/* MOBILE */

@media(max-width:1100px){

  .food-list{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .food-section{
    padding:70px 0 90px;
  }

  .food-intro{
    margin-bottom:50px;
  }

  .food-intro h2{
    font-size:34px;
  }

  .food-intro p:not(.food-kicker){
    font-size:17px;
  }

  .food-category{
    margin-bottom:70px;
  }

  .food-category-head h2{
    font-size:30px;
  }

  .food-item{
    grid-template-columns:100px 1fr;
    gap:16px;
    padding:18px;
  }

  .food-item-image{
    width:100px;
    border-radius:16px;
  }

  .food-item-top{
    flex-direction:column;
    gap:4px;
  }

  .food-item-top h3{
    font-size:17px;
  }

  .food-item-top span{
    font-size:16px;
  }

  .food-item-description{
    font-size:14px;
    line-height:1.55;
  }

}

@media(max-width:460px){

  .food-item{
    grid-template-columns:90px 1fr;
    gap:14px;
    padding:16px;
    align-items:start;
  }

  .food-item-image{
    width:90px;
    border-radius:14px;
  }

  .food-item-top h3{
    font-size:16px;
    line-height:1.3;
  }

  .food-item-top span{
    font-size:15px;
  }

  .food-item-description{
    font-size:13px;
    line-height:1.5;
  }

  .food-item-bottom{
    margin-top:12px;
  }

}
/* ==========================================
   MOBILE BURGER MENU
   ========================================== */

.burger-btn{
  display:none;
}

@media(min-width:901px){

  .burger-btn{
    display:none !important;
  }

}

@media(max-width:900px){

  .site-header{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .site-header.scrolled{
    background:rgba(255,255,255,0.94);
  }

  .header-inner{
    height:96px;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:0;
  }

  .logo{
    position:relative;
    z-index:1002;
  }

  .logo img{
    height:58px;
  }

  .header-reservation{
    display:none !important;
  }

  .burger-btn{
    position:relative;
    z-index:1003;
    width:138px;
    height:64px;
    padding:0 24px;
    border-radius:999px;
    border:2px solid rgba(255,255,255,0.48);
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    cursor:pointer;
    font-family:"Raleway", sans-serif;
    text-transform:uppercase;
    letter-spacing:0.06em;
    font-size:15px;
    font-weight:700;
  }

  .burger-lines{
    width:30px;
    display:flex;
    flex-direction:column;
    gap:6px;
    flex-shrink:0;
  }

  .burger-lines span{
    display:block;
    width:30px;
    height:2px;
    background:currentColor;
    border-radius:999px;
    transition:.3s ease;
  }

  .burger-btn strong{
    color:currentColor;
    font-size:15px;
    font-weight:700;
    line-height:1;
  }

  .site-header.scrolled .burger-btn{
    color:#2f3136;
    border-color:rgba(0,0,0,0.18);
    background:rgba(255,255,255,0.7);
  }

  .main-nav{
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;
    padding:140px 32px 60px;
    background:#3f463a;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:32px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.35s ease;
    z-index:1001;
  }

  .main-nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .main-nav a{
    color:#ffffff !important;
    font-size:32px;
    line-height:1.15;
    font-weight:400;
    letter-spacing:-0.02em;
  }

  .main-nav a:hover{
    transform:none;
    color:#dbe6c8 !important;
    text-shadow:none;
  }

  body.menu-open{
    overflow:hidden;
  }

  body.menu-open .site-header{
    background:#3f463a;
    border-bottom:0;
    backdrop-filter:none;
  }

  body.menu-open .burger-btn{
    color:#ffffff;
    border-color:rgba(255,255,255,0.48);
    background:rgba(255,255,255,0.08);
  }

  body.menu-open .burger-lines{
    position:relative;
    width:30px;
    height:24px;
  }

 body.menu-open .burger-lines span{
    position:absolute;
    left:0;
    top:10px;
    width:30px;
    height: 2px;
}

  body.menu-open .burger-lines span:nth-child(1){
    transform:rotate(45deg);
  }

  body.menu-open .burger-lines span:nth-child(2){
    opacity:0;
  }

  body.menu-open .burger-lines span:nth-child(3){
    transform:rotate(-45deg);
  }

}

@media(max-width:480px){

  .header-inner{
    height:90px;
  }

  .logo img{
    height:52px;
  }

  .burger-btn{
    width:128px;
    height:56px;
    padding:0 20px;
    gap:12px;
  }

  .burger-lines{
    width:28px;
    gap:5px;
  }

  .burger-lines span{
    width:28px;
    height:3px;
  }

  .burger-btn strong{
    font-size:14px;
  }

  .main-nav a{
    font-size:28px;
  }

}
/* ==========================================
   HOME SHARED TYPOGRAPHY
   ========================================== */

.home-about,
.home-ingredients{
  background: #f7f5f1;
}

.home-about-subtitle,
.ingredients-subtitle{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .26em;
  color: #7a7a7a;
}

.home-about-content h2,
.ingredients-intro h2{
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  color: #566540;
  margin-bottom: 28px;
}

.home-about-content p,
.ingredients-intro p,
.ingredient-content p{
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

.ingredient-content h3{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  color: #566540;
  margin-bottom: 24px;
}

/* ==========================================
   HOME ABOUT
   ========================================== */

.home-about{
  padding: 120px 7% 40px;
}

.home-about-grid{
  display: grid;
  grid-template-columns: 500px minmax(320px, 560px);
  gap: 42px;
  align-items: center;
  justify-content: center;
}

.home-about-image{
  overflow: hidden;
  border-radius: 30px;
}

.home-about-image img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.home-about-image:hover img{
  transform: scale(1.03);
}

.home-about-content{
  max-width: 560px;
}

/* ==========================================
   HOME INGREDIENTS
   ========================================== */

.home-ingredients{
  padding: 20px 7% 50px;
}

.ingredients-intro{
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.ingredients-intro p{
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ingredients-grid{
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.ingredient-card{
  display: grid;
  grid-template-columns: 420px minmax(320px, 620px);
  gap: 55px;
  align-items: center;
  justify-content: center;
}

.ingredient-card.reverse .ingredient-image{
  order: 2;
}

.ingredient-card.reverse .ingredient-content{
  order: 1;
}

.ingredient-image{
  overflow: hidden;
  border-radius: 28px;
  width: 420px;
  margin: 0 auto;
}

.ingredient-image img{
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.ingredient-card:hover img{
  transform: scale(1.03);
}

.ingredient-content{
  max-width: 620px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px){

  .home-about,
  .home-ingredients{
    padding: 90px 24px;
  }

  .home-about-grid,
  .ingredient-card{
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ingredient-card.reverse .ingredient-image,
  .ingredient-card.reverse .ingredient-content{
    order: initial;
  }

  .home-about-content,
  .ingredient-content{
    max-width: 100%;
  }

  .ingredient-image{
    width: 100%;
    max-width: 420px;
  }

  .ingredients-intro{
    margin-bottom: 60px;
  }

  .ingredients-grid{
    gap: 70px;
  }

  .home-about-content h2,
  .ingredients-intro h2{
    font-size: 38px;
    margin-bottom: 24px;
  }

  .ingredient-content h3{
    font-size: 34px;
    margin-bottom: 18px;
  }

  .home-about-content p,
  .ingredients-intro p,
  .ingredient-content p{
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ==========================================
   HOME PIZZA STORY
   ========================================== */

.home-pizza-story{
  padding: 110px 7% 40px;
  background: #f7f5f1;
}

.pizza-story-inner{
  max-width: 1180px;
  margin: 0 auto;
}

.pizza-story-image{
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 70px;
}

.pizza-story-image img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.pizza-story-image:hover img{
  transform: scale(1.03);
}

.pizza-story-content{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pizza-story-content .section-subtitle{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .26em;
  color: #7a7a7a;
}

.pizza-story-content h2{
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  color: #566540;
  margin-bottom: 28px;
}

.pizza-story-content p{
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px){

  .home-pizza-story{
    padding: 90px 24px;
  }

  .pizza-story-image{
    border-radius: 24px;
    margin-bottom: 50px;
  }

  .pizza-story-content{
    max-width: 100%;
  }

  .pizza-story-content h2{
    font-size: 38px;
    margin-bottom: 24px;
  }

  .pizza-story-content p{
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ==========================================
   HOME GALLERY PREVIEW
   ========================================== */

.home-gallery-preview{
  padding: 10px 7% 30px;
  background: #f7f5f1;
  overflow: hidden;
}

.gallery-preview-head{
  width: min(760px, 92%);
  margin: 0 auto 70px;
  text-align: center;
}

.gallery-preview-subtitle{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .26em;
  color: #7a7a7a;
}

.gallery-preview-head h2{
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  color: #566540;
  margin-bottom: 24px;
}

.gallery-preview-head p{
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}

.gallery-preview-row{
  display: flex;
  gap: 16px;
  width: max-content;
  margin-bottom: 16px;
  transition: transform .4s ease;
}

.gallery-preview-row img{
  width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.gallery-preview-row:hover img{
  transform: scale(.98);
}

.gallery-preview-row img:hover{
  transform: scale(1.03);
}

.top-row{
  animation: galleryLeft 32s linear infinite;
}

.bottom-row{
  animation: galleryRight 32s linear infinite;
}

@keyframes galleryLeft{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

@keyframes galleryRight{
  from{
    transform: translateX(-50%);
  }
  to{
    transform: translateX(0);
  }
}

/* ==========================================
   HOME REFERENCES
   ========================================== */

.home-references{
   padding: 70px 7% 110px;
  background: #f7f5f1;
}

.home-references-head{
  text-align: center;
  margin-bottom: 70px;
}

.home-references-subtitle{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .26em;
  color: #7a7a7a;
}

.home-references-head h2{
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  color: #566540;
}

.home-references-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-reference-card{
  padding: 24px;
  background: #ffffff;
  border-radius: 26px;
}

.home-reference-top{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.home-reference-top h3{
  font-size: 18px;
  font-weight: 500;
  color: #566540;
}

.home-reference-top span{
  color: #d4af37;
  letter-spacing: 2px;
}

.home-reference-card p{
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 22px;
}

.home-reference-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.home-references-button{
  text-align: center;
  margin-top: 55px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1100px){

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

}

@media (max-width: 768px){

  .home-gallery-preview,
  .home-references{
   padding: 10px 24px 30px;
  }

  .gallery-preview-row img{
    width: 260px;
  }

  .home-references-grid{
    grid-template-columns: 1fr;
  }

   .home-references-button{
    margin-bottom: 40px;
  }

}

.home-references-head .reference-rating{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:26px;
  font-size:14px;
}

.home-references-head .reference-rating__stars{
  color:#d4af37;
  letter-spacing:2px;
}

.home-references-head .reference-rating__text{
  color:#555;
}

.home-references-head .rating-google{
  font-weight:600;
}

.home-references-head .rating-google .g1{color:#4285F4;}
.home-references-head .rating-google .g2{color:#EA4335;}
.home-references-head .rating-google .g3{color:#FBBC05;}
.home-references-head .rating-google .g4{color:#4285F4;}
.home-references-head .rating-google .g5{color:#34A853;}
.home-references-head .rating-google .g6{color:#EA4335;}

@media (max-width: 768px){

  .home-references-head .reference-rating{
    flex-direction:column;
    gap:6px;
  }

}

@media (max-width: 991px){

  .home-about,
  .home-ingredients,
  .home-pizza-story,
  .home-reviews{
    padding: 48px 24px;
  }

  .home-gallery{
    padding: 40px 0;
  }

}