:root {
  --red: #b3262e;
  --red-dark: #8f1f25;
  --bg: #ffffff;
  --text: #1f1f1f;
  --muted: #666;
  --border: #e5e5e5;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--red);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 2px solid var(--red);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.links a {
  font-weight: 600;
  color: var(--text);
}

.links a.active {
  color: var(--red);
}

/* Buttons */
.btn {
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--red-dark);
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}

/* Hero / Store section */
.hero {
  padding: 48px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

/* Info card */
.card {
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.card h2 {
  margin-top: 0;
}

.card h3 {
  margin-bottom: 8px;
}

/* Hours list */
.hours {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

/* Image stack — BOTTOM ALIGNED */
.image-card {
  display: grid;
  gap: 16px;

  /* THIS is the key change */
  align-self: end;
}

.image-card img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* Menu page */
.page-title {
  margin: 40px 0 20px;
  font-size: 36px;
}

.pdf-card {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pdf-card iframe {
  width: 100%;
  height: 75vh;
  border: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  .image-card {
    align-self: start;
  }

  .image-card img {
    max-height: 220px;
  }
}
