:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #b91c1c;
  --brand-dark: #971010;
  --accent: #f59e0b;
  --border: #eadfce;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo img {
  height: 70px;   /* adjust as needed */
  width: auto;
  display: block;
}

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

.nav-links a {
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a.active {
  color: var(--brand);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: white;
}

.btn-secondary.light {
  border-color: white;
  color: white;
  background: transparent;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid,
.two-col,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: #fee2e2;
  color: var(--brand-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

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

.hero-actions.center {
  justify-content: center;
}

.section {
  padding: 2.5rem 0;
}

.section-inner {
  padding-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 1.2rem;
}

.gallery-grid,
.reviews-grid,
.three-col,
.menu-grid {
  display: grid;
  gap: 1.25rem;
}

.gallery-grid,
.reviews-grid,
.three-col,
.menu-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #7f1d1d, #b91c1c);
  color: white;
  border-radius: 24px;
  padding: 3rem 1.25rem;
}

.cta p,
.cta h2 {
  color: white;
}

.page-intro {
  margin-bottom: 2rem;
}

.menu-section {
  margin-bottom: 2.5rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-row span {
  font-weight: 700;
  color: var(--brand-dark);
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d7cbb9;
  border-radius: 12px;
  font: inherit;
  background: white;
}

.form-btn {
  margin-top: 0.5rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
}

.location-section {
  padding: 60px 20px;
}

.location-section h2,
.location-section p {
  text-align: center;
}

.map-wrap {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
}

.card-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .two-col,
  .about-grid,
  .contact-grid,
  .gallery-grid,
  .reviews-grid,
  .three-col,
  .menu-grid {
    grid-template-columns: 1fr;
  }
}