/* Reset & Base */
:root {
  --primary: #a23e31;
  --primary-foreground: #ffffff;
  --secondary: #f5f1ee;
  --secondary-foreground: #3e2723;
  --accent: #d7ccc8;
  --accent-foreground: #3e2723;
  --background: #ffffff;
  --foreground: #2c2c2c;
  --card: #ffffff;
  --card-foreground: #2c2c2c;
  --muted: #fafafa;
  --muted-foreground: #757575;
  --border: #e0e0e0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-family-headings: 'DM Sans', sans-serif;
  --font-family-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headings);
  margin: 0;
}

p {
  margin: 0;
}

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

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-spacing {
  padding: 100px 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-family-body);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: #4e342e;
  border-color: #4e342e;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-ghost:hover {
  background: rgba(93, 64, 55, 0.05);
}

/* Navigation */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family-headings);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-foreground);
}

.nav-link:hover,
.nav-link-active {
  color: var(--foreground);
  font-weight: 700;
}

/* Hero Section */
.hero {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--secondary);
  overflow: hidden;
}

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

.hero-content {
  padding: 60px 0;
  animation: fadeIn 0.8s ease-out;
}

.hero-headline {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-img-col {
  position: relative;
  height: 600px;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 20px 20px 0px rgba(93, 64, 55, 0.1);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideUp 0.6s ease-out 0.8s backwards;
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: #00aa6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.rating-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-family-headings);
}

.rating-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* Philosophy Section */
.story-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.story-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--foreground);
}

.story-text p {
  color: var(--muted-foreground);
  margin-bottom: 24px;
  font-size: 16px;
}

.story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background-color: var(--secondary);
  /* Placeholder color */
}

.story-img.tall {
  grid-row: span 2;
  height: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-title {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-family-headings);
}

.feature-desc {
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Menu Section */
.menu-section {
  background: var(--primary);
  color: white;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-header h2 {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}

.menu-header p {
  color: rgba(255, 255, 255, 0.7);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-card {
  background: var(--primary);
  padding: 40px;
  transition: background 0.3s ease;
}

.menu-card:hover {
  background: #6d4c41;
}

.item-price {
  font-size: 20px;
  font-weight: 700;
  color: #d7ccc8;
  margin-bottom: 8px;
  display: block;
}

.item-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  font-family: var(--font-family-headings);
}

.item-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.9;
  transition: opacity 0.3s;
  background-color: var(--secondary-foreground);
}

.menu-card:hover .item-img {
  opacity: 1;
}

/* Specials Section */
.specials-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: var(--muted);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.special-main {
  position: relative;
  height: 500px;
}

.special-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.special-overlay h3 {
  font-size: 24px;
  font-weight: 700;
}

.special-list {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.list-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

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

.list-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--secondary);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #9e9e9e;
  max-width: 300px;
}

.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #757575;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.footer-col a {
  display: block;
  color: white;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--primary-foreground);
  text-decoration: underline;
}

.trip-advisor {
  background: white;
  color: black;
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #757575;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .specials-layout {
    grid-template-columns: 1fr;
  }

  .special-main {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-headline {
    font-size: 40px;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 40px;
  }
}