:root {
  --red: #c22a2a;
  --gold: #1e4db8;
  --cream: #fafafa;
  --charcoal: #1a1a2e;
  --olive: #162f8a;
  --muted: #6b6258;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1150px;
}

* {
  box-sizing: border-box;
}

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

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

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

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Playfair Display", serif;
}

.brand-badge {
  background: var(--red);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--red);
}

.cta-group {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 64px 0 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--muted);
  max-width: 720px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(31, 31, 31, 0.15);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.menu-item span {
  font-weight: 600;
}

.highlight {
  background: rgba(223, 175, 44, 0.15);
  padding: 18px;
  border-radius: var(--radius-sm);
}

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

.gallery img {
  border-radius: var(--radius-sm);
  height: 220px;
  object-fit: cover;
}

.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer a {
  color: var(--cream);
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 14px;
    background: var(--cream);
    position: absolute;
    top: 72px;
    right: 24px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .cta-group {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }
}
