:root {
  color-scheme: light;
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  background: #fcfcfc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f8f4ef;
}

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

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ece5dc;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d1f0c;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: #4b3621;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #3b2b1b;
  border-radius: 999px;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #fff7ed 0%, #f8f1e6 100%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b17b49;
}

h1,
h2,
h3 {
  color: #2b1b0f;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: #bf5d28;
  color: #fff;
}

.secondary {
  background: rgba(187, 129, 87, 0.12);
  color: #4f2d17;
}

.section {
  padding: 4rem 0;
}

.alternate {
  background: #fffaf2;
}

.section-header {
  margin-bottom: 2rem;
}

.menu-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.menu-card,
.contact-card,
.info-box {
  padding: 1.75rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(72, 38, 12, 0.08);
}

.menu-card {
  max-width: 520px;
  margin: 0 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(72, 38, 12, 0.14);
}

.menu-card h3,
.contact-card h3,
.info-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}

.site-footer {
  padding: 1.5rem 0;
  background: #fff;
  border-top: 1px solid #ece5dc;
}

.footer-inner {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .menu-grid,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    display: none;
  }

  .site-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .about-grid,
  .menu-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
