:root {
      --dark: #1c1a17;
      --gold: #d6b27c;
      --light: #f6f3ee;
      --text: #2f2b26;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      background: linear-gradient(90deg, #1c1a17, #2a261f);
      color: #fff;
      padding: 1.2rem 0;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 0 1rem;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav a {
      color: #fff;
      margin-left: 1.5rem;
      text-decoration: none;
      font-weight: 600;
    }

    .hero {
      background: linear-gradient(rgba(28,26,23,.7), rgba(28,26,23,.7)), url('hero.jpg') center/cover no-repeat;
      color: #fff;
      padding: 5.5rem 0;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero span {
      color: var(--gold);
    }

    .btn {
      display: inline-block;
      margin: .5rem;
      padding: .85rem 1.7rem;
      background: linear-gradient(135deg, #d6b27c, #c9a46a);
      color: #1c1a17;
      text-decoration: none;
      font-weight: 700;
      border-radius: 6px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(0,0,0,.25);
    }

    section {
      padding: 3.5rem 0;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--dark);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: #fff;
      padding: 1.8rem;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,.12);
    }

    .menu-day {
      border-left: 4px solid var(--gold);
      padding-left: 1rem;
      margin-bottom: 1rem;
    }

    footer {
      background: var(--dark);
      color: #fff;
      text-align: center;
      padding: 2rem 1rem;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2rem; }
      .nav { flex-direction: column; }
    }
	
	.service-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.service-item .icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item:hover .icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

@media (hover: none) {
  .service-item:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
}

.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: #f7f5f2;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-item h3 {
  margin: 1rem 0 0.5rem;
  color: #1c1a17;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6b27c, #c9a46a);
  color: #1c1a17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.footer a {
  color: #eee;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #d6b27c;
}

.footer {
  background: #1c1a17;
  color: #eee;
  padding: 3rem 1rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: #d6b27c;
  margin-bottom: 0.6rem;
}

.footer p {
  line-height: 1.6;
}

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

.footer a:hover {
  color: #d6b27c;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}
#open-today {
  color: #d6b27c;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}