:root {
  --maroon: #7a1c1c;
  --maroon-dark: #5a1414;
  --maroon-light: #a3271f;
  --black: #171412;
  --charcoal: #262220;
  --cream: #f7f2ea;
  --white: #ffffff;
  --gold: #d9a441;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0,0,0,0.12);
  --font-title: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { font-family: var(--font-title); line-height: 1.15; }

.img-placeholder {
  position: relative;
  background: repeating-linear-gradient(135deg, #2a2422, #2a2422 12px, #322a27 12px, #322a27 24px);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-align: center;
  overflow: hidden;
}
.img-placeholder::before {
  content: "📷 " attr(data-label);
  padding: 12px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(23, 20, 18, 0.92);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}
.brand-text strong { font-family: var(--font-title); font-size: 1.15rem; letter-spacing: 0.5px; }
.brand-text small { color: var(--gold); font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(122,28,28,0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--maroon-light); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-call {
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  padding: 10px 18px;
}
.btn-call:hover { transform: translateY(-2px); }

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,20,18,0.55) 0%, rgba(23,20,18,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  max-width: 680px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 1px;
}
.tagline {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 8px 0 24px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- SECTION COMMON ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.menu h2, .apropos h2, .contact h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}
.section-note {
  color: #6b6360;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ---------- MENU ---------- */
.menu {
  position: relative;
  background:
    radial-gradient(circle at 8% 18%,  rgba(0,0,0,0.22) 0 26px, transparent 27px),
    radial-gradient(circle at 32% 62%, rgba(0,0,0,0.16) 0 18px, transparent 19px),
    radial-gradient(circle at 58% 12%, rgba(0,0,0,0.20) 0 14px, transparent 15px),
    radial-gradient(circle at 78% 45%, rgba(0,0,0,0.18) 0 22px, transparent 23px),
    radial-gradient(circle at 15% 88%, rgba(0,0,0,0.20) 0 20px, transparent 21px),
    radial-gradient(circle at 92% 82%, rgba(0,0,0,0.16) 0 16px, transparent 17px),
    radial-gradient(circle at 45% 38%, rgba(255,255,255,0.05) 0 10px, transparent 11px),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  background-repeat: repeat;
  background-size: 420px 420px;
}
.menu .section-eyebrow { color: var(--gold); }
.menu h2 { color: var(--white); }
.menu .section-note { color: rgba(255,255,255,0.75); }
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.menu-column {
  background: #fbf3e7;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}
.menu-cat {
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--maroon);
}
.menu-list { list-style: none; }
.menu-list li {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}
.menu-list li:last-child { border-bottom: none; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-name { font-weight: 600; }
.menu-price {
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
}
.menu-ingredients {
  color: #6b6360;
  font-size: 0.88rem;
  margin-top: 2px;
}

/* ---------- A PROPOS ---------- */
.apropos { background: var(--black); color: var(--white); }
.apropos-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.apropos-text h2 { color: var(--white); margin-bottom: 20px; }
.apropos-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.apropos-text .section-eyebrow { color: var(--gold); }
.apropos-media {
  min-height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- CONTACT ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.contact-card p { color: #6b6360; }
.contact-card a { color: var(--maroon); font-weight: 600; }
.closed { color: var(--maroon-light); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner a { color: var(--gold); font-weight: 600; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 400; text-decoration: underline; }
.footer-links a:hover { color: var(--gold); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@media (max-width: 720px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-page { background: var(--white); padding-top: 140px; }
.legal-content { max-width: 800px; }
.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 1.2rem;
  color: var(--maroon);
  margin: 32px 0 10px;
}
.legal-content p {
  color: #4a4441;
  margin-bottom: 8px;
}
.legal-content a { color: var(--maroon); font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .apropos-inner { grid-template-columns: 1fr; }
  .apropos-media { min-height: 260px; order: -1; }
  .menu-columns { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .header-call { display: none; }
  .burger { display: flex; }

  .site-header.nav-open .header-inner { flex-wrap: wrap; height: auto; padding-bottom: 8px; }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    background: var(--black);
    padding: 20px 0 0;
    gap: 18px;
  }
  .site-header.nav-open .header-call {
    display: inline-flex;
    order: 4;
    margin: 16px 0 20px;
  }

  .hero-content { padding-top: 96px; }
  section { padding: 64px 0; }
}
