:root {
  --maroon: #6B2D2D;
  --maroon-dark: #4E2020;
  --maroon-light: #8B3D3D;
  --cream: #FAF6F0;
  --cream-dark: #F0E8DC;
  --ink: #1F1A17;
  --ink-soft: #4A413C;
  --gold: #C9A961;
  --gold-dark: #A88B47;
  --border: rgba(107, 45, 45, 0.15);
  --shadow-sm: 0 1px 2px rgba(31, 26, 23, 0.06);
  --shadow-md: 0 4px 14px rgba(31, 26, 23, 0.08);
  --shadow-lg: 0 16px 40px rgba(31, 26, 23, 0.12);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--maroon);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.4em; }
h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.3em; }

p { margin-bottom: 1em; color: var(--ink-soft); }

a { color: var(--maroon); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--maroon-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Header / Nav ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon);
  box-shadow: var(--shadow-md);
}

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

.nav__logo {
  display: block;
  height: 52px;
}
.nav__logo img { height: 100%; width: auto; }

.nav__links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 780px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--maroon-dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
  }
  .nav__links a::after { display: none; }
  .nav__links a:hover { background: var(--maroon); }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background: linear-gradient(rgba(31, 26, 23, 0.55), rgba(31, 26, 23, 0.45)),
              var(--maroon-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero[data-bg] { background-image: linear-gradient(rgba(31, 26, 23, 0.55), rgba(31, 26, 23, 0.45)), var(--hero-bg); }

.hero__inner { padding: 100px 0; max-width: 720px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero h1 { color: var(--cream); margin-bottom: 18px; }
.hero p { color: rgba(250, 246, 240, 0.88); font-size: 1.15rem; max-width: 580px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-md);
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  background: var(--gold-dark);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 12px 30px;
}
.btn--outline:hover { background: var(--cream); color: var(--maroon); }

.hero__ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ Sections ============ */

.section { padding: 80px 0; }
.section--alt { background: var(--cream-dark); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section__header p { font-size: 1.1rem; }

.section__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============ Feature grid (homepage categories) ============ */

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

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--cream);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--maroon);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--cream); }
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cat-card:hover .cat-card__img { transform: scale(1.05); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,23,0.1) 40%, rgba(31,26,23,0.8) 100%);
}
.cat-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
}
.cat-card h3 {
  color: var(--cream);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.cat-card__body span { font-size: 0.9rem; opacity: 0.85; }

/* ============ Menu page ============ */

.menu-nav {
  position: sticky;
  top: 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  z-index: 50;
}
.menu-nav__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav__inner a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.menu-nav__inner a:hover { background: var(--maroon); color: var(--cream); }

.cat-section { padding: 72px 0 48px; border-bottom: 1px solid var(--border); }
.cat-section:last-child { border-bottom: 0; }
.cat-section__header { margin-bottom: 36px; }
.cat-section__header h2 { display: flex; align-items: baseline; gap: 16px; }
.cat-section__header p { font-style: italic; color: var(--ink-soft); }

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.item-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.item-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}
.item-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.item-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.item-card h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--maroon); font-size: 1.3rem; margin-bottom: 8px; }
.item-card p { font-size: 0.95rem; flex: 1; margin-bottom: 16px; }

.sizes {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0;
}
.sizes li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 0.95rem;
}
.sizes li span:first-child { color: var(--ink-soft); }
.sizes li .price {
  color: var(--maroon);
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
}
.price--inquire { font-style: italic; font-weight: 500; font-size: 0.9rem; color: var(--gold-dark); }

/* ============ Contact / Order ============ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.info-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--maroon);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.info-card ul { list-style: none; }
.info-card li { padding: 4px 0; color: var(--ink-soft); }
.info-card a { font-weight: 500; }

.map-wrap {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.order-hero {
  background: var(--maroon);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  margin-top: 32px;
}
.order-hero h2 { color: var(--cream); }
.order-hero p { color: rgba(250,246,240,0.88); margin-bottom: 28px; max-width: 560px; margin-inline: auto; }

/* ============ Footer ============ */

.site-footer {
  background: var(--ink);
  color: rgba(250,246,240,0.7);
  padding: 56px 0 32px;
  font-size: 0.92rem;
}
.site-footer h4 { color: var(--cream); font-family: 'Inter', sans-serif; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 3px 0; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ============ Small utilities ============ */

.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.muted { color: var(--ink-soft); }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero__inner { padding: 72px 0; }
  .order-hero { padding: 36px 20px; }
}
