/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1c1917;
  background: #fff;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

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

.section {
  padding: 5rem 0;
}

.section-gray {
  background: #f5f5f4;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  color: #d97706;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: #a8a29e;
  font-size: 0.85rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #d6d3d1;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: #d6d3d1;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #f59e0b;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,25,23,0.8), rgba(28,25,23,0.5), transparent);
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  max-width: 700px;
}

.hero-subtitle {
  color: #f59e0b;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-title-italic {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 3rem;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: #d6d3d1;
  font-size: 0.9rem;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #f59e0b;
  color: #fff;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== CHEF CARD ===== */
.chef-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}

.chef-image-wrapper {
  position: relative;
}

.chef-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.chef-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #f59e0b;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.chef-badge-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.chef-badge-text {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.chef-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chef-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1c1917;
  line-height: 1.2;
}

.chef-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.chef-description {
  color: #78716c;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.chef-description:last-of-type {
  margin-bottom: 2rem;
}

.chef-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid #e7e5e4;
  padding-top: 1.5rem;
}

.chef-stat {
  text-align: center;
}

.chef-stat-border {
  border-left: 1px solid #e7e5e4;
  border-right: 1px solid #e7e5e4;
}

.chef-stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c1917;
}

.chef-stat-label {
  display: block;
  font-size: 0.65rem;
  color: #a8a29e;
  margin-top: 0.25rem;
}

/* ===== MENU ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.menu-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #f5f5f4;
  color: #78716c;
  transition: all 0.3s;
}

.menu-tab:hover {
  background: #e7e5e4;
}

.menu-tab.active {
  background: #f59e0b;
  color: #fff;
}

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

.menu-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.menu-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(28,25,23,0.8);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.menu-card-body {
  padding: 1rem;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
}

.menu-card-price {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-card-desc {
  color: #a8a29e;
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay-btn {
  background: #f59e0b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-overlay-btn:hover {
  background: #d97706;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 400px;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.9), rgba(28,25,23,0.2), transparent);
}

.contact-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item span {
  font-size: 0.85rem;
}

.contact-form-wrapper {
  background: #f5f5f4;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.form-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group:not(.form-row .form-group) {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d6d3d1;
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  background: #fff;
  color: #1c1917;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #d97706;
}

/* ===== FOOTER ===== */
.footer {
  background: #1c1917;
  color: #fff;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  font-size: 1rem;
  font-weight: 700;
}

.footer-description {
  color: #a8a29e;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: #a8a29e;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  color: #a8a29e;
}

.footer-hours li span:last-child {
  color: #fff;
}

.footer-phone {
  color: #a8a29e;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 1.5rem;
  text-align: center;
  color: #78716c;
  font-size: 0.7rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-title,
  .hero-title-italic {
    font-size: 2.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .chef-card {
    grid-template-columns: 1fr;
  }

  .chef-image {
    min-height: 250px;
  }

  .chef-info {
    padding: 1.5rem;
  }

  .chef-title,
  .chef-name {
    font-size: 1.35rem;
  }

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

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

  .gallery-item img {
    height: 160px;
  }

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

  .contact-image-wrapper {
    min-height: 300px;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 3rem;
  }

  .hero-title,
  .hero-title-italic {
    font-size: 3.25rem;
  }

  .nav-container {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 5rem;
  }

  .hero-title,
  .hero-title-italic {
    font-size: 3.75rem;
  }

  .gallery-item img {
    height: 210px;
  }
}
