:root {
  --gold: #a67c2e;
  --gold-light: #c9a24b;
  --gold-pale: #f4e9d4;
  --cream: #fffaf1;
  --ink: #2b2118;
  --ink-soft: #5c5346;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(90, 65, 20, 0.08);
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { color: var(--ink-soft); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(166, 124, 46, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; }

.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 130px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(30, 20, 8, 0.55) 0%, rgba(30, 20, 8, 0.72) 55%, rgba(20, 13, 5, 0.88) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow.center, .section-sub.center, h2.center { text-align: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  overflow-wrap: break-word;
}
.hero-sub {
  color: #f1e9d8;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Floating call button */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(90, 65, 20, 0.35);
}
.call-fab-icon { font-size: 1.1rem; }
@media (max-width: 520px) {
  .call-fab-text { display: none; }
  .call-fab { padding: 14px; }
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-pale); }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--gold-pale); }
.section-sub {
  max-width: 560px;
  margin: 0 auto 50px;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}
.about-art {
  position: relative;
  height: 380px;
}
.about-photo {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  border: 6px solid var(--white);
}
.about-photo-1 {
  width: 78%;
  height: 78%;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-photo-2 {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border-color: var(--gold-pale);
}
.about-copy p { margin-bottom: 16px; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(90, 65, 20, 0.16);
}
.product-thumb {
  height: 190px;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; padding: 0 6px; }
.product-card p { font-size: 0.92rem; margin: 0; padding: 0 6px 4px; }
.products-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  font-style: italic;
}

/* Full menu card */
.menu-card {
  background: var(--white);
  border: 1px solid rgba(166, 124, 46, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 44px;
  position: relative;
}
.menu-card::before,
.menu-card::after {
  content: '✦';
  position: absolute;
  color: var(--gold-light);
  font-size: 1.1rem;
  opacity: 0.7;
}
.menu-card::before { top: 22px; left: 24px; }
.menu-card::after { bottom: 22px; right: 24px; }
.menu-card-heading {
  font-size: 1.15rem;
  text-align: center;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(166, 124, 46, 0.25);
}
.menu-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-card-list li {
  font-size: 1rem;
  text-align: center;
  color: var(--ink);
  position: relative;
}
.menu-card-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(166, 124, 46, 0.35), transparent);
}
.menu-card-cta {
  text-align: center;
  margin-top: 44px;
}
.menu-card-cta p {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: 0.9rem;
  font-style: italic;
}

/* Catering */
.catering-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.catering-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.catering-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.catering-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30, 20, 8, 0.82) 0%, rgba(84, 55, 18, 0.72) 100%);
}
.catering-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.catering-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.catering-content p {
  color: #f1e9d8;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.feature { text-align: center; padding: 10px; }
.feature-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.feature h3 { font-size: 1.1rem; }
.feature p { font-size: 0.92rem; }

/* Contact */
.contact-simple {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-simple p { margin-bottom: 28px; }
.phone-highlight {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  text-decoration: none;
  padding: 22px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.phone-highlight:hover { transform: translateY(-2px); }
.phone-highlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.phone-highlight-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}
.phone-highlight-lg .phone-highlight-number { font-size: 2rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d9cdb8;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.footer-logo {
  height: 44px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-inner p { color: #b9ac93; font-size: 0.85rem; margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; max-width: 420px; width: 100%; height: 300px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero { padding: 130px 0 100px; }
  .about-art { height: 240px; }
}

@media (max-width: 620px) {
  .menu-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 30px;
  }
  .menu-card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 124, 46, 0.35), transparent);
  }
}


@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(166, 124, 46, 0.15);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
}
