:root{
  --gold:#9f7435;
  --gold2:#c9a160;
  --black:#111111;
  --dark:#17110b;
  --text:#202020;
  --muted:#666666;
  --cream:#fbf7ef;
  --soft:#f8f3ea;
  --line:#eadcc2;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(0,0,0,.12);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',Arial,sans-serif;
  background:#ffffff;
  color:var(--text);
}

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

img{
  display:block;
  max-width:100%;
}

.container{
  width:92%;
  max-width:1180px;
  margin:auto;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background:#0f0f0f;
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(201,161,96,.35);
  transition:.3s ease;
}

.header.scrolled{
  box-shadow:0 12px 40px rgba(0,0,0,.18);
}

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

.logo img{
  width:180px;
  max-height:68px;
  object-fit:contain;
  filter:drop-shadow(0 0 12px rgba(201,161,96,.22));
}

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

.nav a{
  font-size:14px;
  font-weight:700;
  color:#f7f1e7;
  position:relative;
  transition:.25s ease;
}

.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--gold2);
  transition:.25s ease;
}

.nav a:hover{
  color:var(--gold2);
}

.nav a:hover:after{
  width:100%;
}

.language-switcher{
  display:flex;
  align-items:center;
  gap:8px;
}

.language-switcher button{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:transparent;
  color:#ffffff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:.3s ease;
}

.language-switcher button:hover,
.language-switcher button.active{
  background:#ffffff;
  color:#111111;
  border-color:#ffffff;
}

.hamburger{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  cursor:pointer;
  transition:.3s ease;
  padding:11px;
}

.hamburger:hover{
  background:#ffffff;
}

.hamburger span{
  display:block;
  width:100%;
  height:2px;
  background:#ffffff;
  margin:5px 0;
  border-radius:20px;
  transition:.3s ease;
}

.hamburger:hover span{
  background:#111111;
}

/* HERO */
.hero{
  position:relative;
  min-height:calc(100vh - 88px);
  overflow:hidden;
  padding:84px 0;
  background:linear-gradient(180deg,var(--cream),#fff);
}

.hero-bg{
  position:absolute;
  right:0;
  top:0;
  width:48%;
  height:100%;
  opacity:.14;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:60px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  background:#fff7e8;
  border:1px solid #ead3a8;
  padding:9px 18px;
  border-radius:40px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.65px;
  margin-bottom:18px;
}

.eyebrow:before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}

h1,h2{
  font-family:'Cormorant Garamond',serif;
  color:#111;
  font-weight:700;
}

h1{
  font-size:82px;
  line-height:.92;
  letter-spacing:1.5px;
  margin-bottom:24px;
}

h2{
  font-size:52px;
  line-height:1.05;
  margin-bottom:16px;
}

.hero-content p,
.section-copy p,
.reservation-text p,
.experience p{
  font-size:18px;
  line-height:1.85;
  color:#5d5d5d;
}

.hero-actions,
.contact-buttons{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 27px;
  border-radius:45px;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
}

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

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff;
  box-shadow:0 14px 30px rgba(159,116,53,.25);
}

.btn-light{
  background:#fff;
  color:var(--gold);
  border-color:#d7bb83;
}

.btn-dark{
  background:var(--dark);
  color:#fff;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:38px;
}

.hero-stats div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:19px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.hero-stats strong{
  display:block;
  font-size:27px;
  color:var(--gold);
}

.hero-stats span{
  font-size:13px;
  color:#666;
}

.hero-card{
  position:relative;
}

.hero-card>img{
  width:100%;
  height:620px;
  object-fit:cover;
  border-radius:38px;
  box-shadow:var(--shadow);
}

.hero-card:before{
  content:"";
  position:absolute;
  inset:20px;
  border:1px solid rgba(255,255,255,.6);
  border-radius:28px;
  z-index:1;
}

.hero-card-text{
  position:absolute;
  left:-28px;
  bottom:36px;
  z-index:2;
  max-width:320px;
  background:rgba(255,255,255,.96);
  border:1px solid #ead3a8;
  border-radius:24px;
  padding:23px;
  box-shadow:0 20px 45px rgba(0,0,0,.14);
}

.hero-card-text span{
  color:var(--gold);
  font-weight:800;
}

.hero-card-text p{
  font-size:14px;
  color:#555;
  margin-top:8px;
  line-height:1.55;
}

/* SECTIONS */
.section{
  padding:96px 0;
}

.section-soft{
  background:var(--soft);
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}

.split-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:60px;
  align-items:center;
}

.image-stack{
  position:relative;
}

.image-stack img{
  width:100%;
  height:540px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow);
}

.stack-note{
  position:absolute;
  right:-18px;
  bottom:28px;
  max-width:290px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  color:#5f513d;
  font-weight:700;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.feature-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:30px;
}

.feature-list div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.04);
}

.feature-list h3{
  color:var(--gold);
  margin-bottom:8px;
  font-size:17px;
}

.feature-list p{
  font-size:14px;
  line-height:1.6;
  color:#666;
}

/* CATEGORIES */
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.category-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  cursor:pointer;
  transition:.28s ease;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.category-card:hover{
  transform:translateY(-8px);
}

.category-card img{
  width:100%;
  height:225px;
  object-fit:cover;
}

.category-card div{
  padding:22px;
}

.category-card h3{
  font-size:21px;
  margin-bottom:8px;
}

.category-card p{
  color:#666;
  line-height:1.55;
}

/* MENU */
.menu-tabs{
  text-align:center;
  margin-bottom:34px;
}

.menu-tabs button{
  background:#fff;
  border:1px solid #d7bb83;
  color:var(--gold);
  padding:12px 22px;
  border-radius:30px;
  margin:5px;
  cursor:pointer;
  font-weight:800;
  transition:.25s ease;
}

.menu-tabs button:hover{
  background:var(--gold);
  color:#fff;
}

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

.menu-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
  transition:.25s ease;
}

.menu-item:hover{
  transform:translateY(-6px);
}

.menu-item img{
  width:100%;
  height:238px;
  object-fit:cover;
}

.menu-item div{
  padding:24px;
}

.menu-item span{
  font-size:12px;
  font-weight:800;
  color:var(--gold);
  letter-spacing:1px;
  text-transform:uppercase;
}

.menu-item h3{
  margin:8px 0 9px;
  font-size:21px;
}

.menu-item p{
  color:#666;
  line-height:1.65;
}

/* EXPERIENCE */
.experience{
  background:linear-gradient(135deg,#15110b,#352616);
  color:#fff;
}

.experience-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:34px;
}

.experience h2,
.experience p{
  color:#fff;
}

.experience p{
  max-width:720px;
  color:#eadcc2;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}

.gallery-item{
  border:0;
  background:transparent;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.35s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
}

.gallery-item.big{
  grid-row:span 2;
}

.gallery-item.big img{
  height:538px;
}

/* RESERVATION */
.reservation{
  background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.86)),url('assets/img/view2.jpg') center/cover no-repeat;
}

.reservation-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius:36px;
  padding:46px;
  box-shadow:var(--shadow);
}

.reservation-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea{
  width:100%;
  padding:16px;
  border:1px solid #ddcba9;
  background:#fff;
  border-radius:16px;
  font-size:15px;
  outline:none;
  font-family:inherit;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(159,116,53,.1);
}

.reservation-form textarea{
  grid-column:span 2;
  min-height:105px;
  resize:none;
}

.reservation-form button{
  grid-column:span 2;
  border:0;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#fff;
  border-radius:45px;
  padding:17px;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.reservation-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(159,116,53,.22);
}

/* CONTACT */
.contact{
  padding:90px 0;
  background:#15110b;
  color:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
  align-items:center;
}

.contact h2{
  color:#fff;
}

.contact p{
  color:#e8d8bc;
  margin:10px 0;
  font-size:18px;
}

.map-box iframe{
  width:100%;
  height:360px;
  border:0;
  border-radius:28px;
  filter:grayscale(.1);
  box-shadow:0 20px 55px rgba(0,0,0,.22);
}

.footer{
  background:#0c0905;
  color:#d9bd8b;
  text-align:center;
  padding:25px;
}

/* LIGHTBOX */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  z-index:2000;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:94vw;
  max-height:88vh;
  border-radius:18px;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:.7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */
@media(max-width:1050px){
  .nav{
    gap:13px;
  }

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

  h1{
    font-size:66px;
  }
}

@media(max-width:900px){
  .header-inner{
    height:82px;
  }

  .nav{
    display:none;
    position:absolute;
    top:82px;
    left:4%;
    right:4%;
    background:#111111;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.28);
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    color:#ffffff;
  }

  .nav a:hover{
    color:var(--gold2);
  }

  .language-switcher{
    display:flex;
    margin-left:auto;
  }

  .language-switcher button{
    width:42px;
    height:42px;
    padding:0;
    font-size:12px;
  }

  .hamburger{
    display:block;
  }

  .hero{
    padding:52px 0 72px;
  }

  .hero-grid,
  .split-grid,
  .reservation-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-card>img{
    height:390px;
    border-radius:28px;
  }

  .hero-card-text{
    position:relative;
    left:auto;
    bottom:auto;
    margin:-48px 18px 0;
  }

  .hero-stats,
  .feature-list,
  .category-grid,
  .menu-grid,
  .gallery-grid,
  .reservation-form{
    grid-template-columns:1fr;
  }

  .gallery-item.big{
    grid-row:auto;
  }

  .gallery-item img,
  .gallery-item.big img{
    height:265px;
  }

  .reservation-form textarea,
  .reservation-form button{
    grid-column:span 1;
  }

  .experience-box{
    flex-direction:column;
    align-items:flex-start;
  }

  h1{
    font-size:48px;
  }

  h2{
    font-size:38px;
  }

  .hero-actions,
  .contact-buttons{
    flex-direction:column;
  }

  .section{
    padding:72px 0;
  }

  .image-stack img{
    height:390px;
  }

  .stack-note{
    position:relative;
    right:auto;
    bottom:auto;
    margin:-40px 18px 0;
  }
}

@media(max-width:520px){
  .container{
    width:90%;
  }

  .logo img{
    width:125px;
  }

  .language-switcher{
    gap:5px;
  }

  .language-switcher button{
    width:36px;
    height:36px;
    font-size:11px;
  }

  .hamburger{
    width:42px;
    height:42px;
    border-radius:12px;
    padding:9px;
  }

  h1{
    font-size:42px;
  }

  h2{
    font-size:34px;
  }

  .hero-content p,
  .section-copy p,
  .reservation-text p,
  .experience p{
    font-size:16px;
  }
}
