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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background: #fafafa;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  background: #111827;
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.logo {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  background: linear-gradient(120deg, #111827, #1f2937);
  color: white;
  padding: 4.5rem 0;
}

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

.hero h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease;
}

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

.primary {
  background: #f59e0b;
  color: #111827;
}

.secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: #ffffff;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.subtext {
  margin-bottom: 2rem;
  color: #4b5563;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.ticks {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.ticks li {
  margin-bottom: 0.5rem;
}

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

.menu-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
}

.menu-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.menu-item ul {
  list-style: none;
}

.menu-item li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #e5e7eb;
  color: #374151;
}

.menu-item li:last-child {
  border-bottom: none;
}

.info p {
  margin: 0.5rem 0;
}

.map-placeholder {
  background: #111827;
  color: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  min-height: 220px;
  display: grid;
  place-content: center;
}

.contact-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 500px;
}

.footer {
  background: #111827;
  color: white;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.small {
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .split {
    grid-template-columns: 1fr;
  }

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

  nav a {
    margin-left: 0.6rem;
  }
}


.hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}

.wide-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
