:root {
  --bg: #fff7f0;
  --surface: #ffffff;
  --accent: #e63946;
  --accent-dark: #d62828;
  --text: #1d1d1b;
  --muted: #555555;
  --border: #e0dcd7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9c9d2 0%, #ffe8d6 55%, #fffcf7 100%);
  position: relative;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 40%);
}

.hero .hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  letter-spacing: -0.04em;
}

.subtitle {
  margin: 1.5rem auto 2rem;
  max-width: 40rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(230, 57, 70, 0.18);
}

.btn-secondary {
  background: #1d1d1b;
  color: #fff;
}

.section-bg {
  background: #fff;
}

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

.section-header h2 {
  margin: 0;
  font-size: 2rem;
}

.section-header p {
  color: var(--muted);
  max-width: 720px;
  margin: 1rem auto 0;
}

.about,
.menu,
.cta {
  padding: 4rem 0;
}

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

.info-grid h3 {
  margin: 0 0 0.75rem;
}

.info-grid p {
  margin: 0.35rem 0;
  color: var(--muted);
}

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

.card {
  background: #fff7f0;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  min-height: 220px;
}

.card h3 {
  margin-top: 0;
}

.cta {
  background: linear-gradient(135deg, #ffe8d6 0%, #f9c9d2 100%);
  border-radius: 40px;
}

.cta .container {
  display: grid;
  place-items: center;
  text-align: center;
}

footer {
  padding: 2rem 0;
  color: var(--muted);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}

@media (max-width: 720px) {
  .hero {
    padding: 3rem 0;
  }

  .cta {
    padding: 3rem 1rem;
  }
}
