:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --text: #f7f4ef;
  --muted: #d7d2c9;
  --red: #b51f26;
  --red-dark: #7f1418;
  --gold: #f1bf15;
  --white: #ffffff;
  --border: rgba(255,255,255,0.1);
  --shadow: 0 18px 50px rgba(0,0,0,.3);
  --body-bg: linear-gradient(180deg, #080808 0%, #130e0f 100%);
  --header-bg: rgba(10,10,10,.92);
}
html[data-theme="light"] {
  --bg: #f7f4ef;
  --bg-soft: #efe7de;
  --panel: rgba(0,0,0,0.04);
  --panel-strong: rgba(0,0,0,0.07);
  --text: #181614;
  --muted: #5f5650;
  --red: #b51f26;
  --red-dark: #7f1418;
  --gold: #b57d00;
  --white: #ffffff;
  --border: rgba(0,0,0,0.1);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --body-bg: linear-gradient(180deg, #f7f4ef 0%, #efe7de 100%);
  --header-bg: rgba(247,244,239,.94);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--body-bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 24px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: flex-start; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; min-width: 0; }
.brand-copy strong { font-size: .98rem; }
.brand-copy span { font-size: .78rem; color: var(--muted); }
.nav { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: space-between; flex: 1 1 0; width: 100%; min-width: 0; }
.nav-links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: flex-start; flex: 1 1 auto; min-width: 0; margin-right: auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: 0 0 auto; }
.nav a { font-weight: 700; color: var(--muted); padding: 8px 0; }

.nav a:hover { color: var(--gold); }
.social-icon-link, .lang-toggle, .theme-toggle { width: 34px; height: 34px; min-height: 34px; min-width: 34px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: var(--text); line-height: 1; display: inline-flex; align-items: center; justify-content: center; transition: .2s ease; flex: 0 0 auto; }
.lang-toggle, .theme-toggle { cursor: pointer; appearance: none; -webkit-appearance: none; }
.social-icon-link:hover, .lang-toggle:hover, .theme-toggle:hover { color: var(--gold); border-color: rgba(241,191,21,.35); }
.nav-social-icon { width: 16px; height: 16px; fill: currentColor; }
.hero { padding: 34px 0 28px; background: radial-gradient(circle at top right, rgba(181,31,38,.18), transparent 35%), radial-gradient(circle at left center, rgba(241,191,21,.14), transparent 30%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.hero-grid > :only-child { grid-column: 1 / -1; }
.eyebrow, .section-kicker { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 800; color: var(--gold); }
.hero h1, h2, h3 { margin: 0; font-family: 'Oswald', sans-serif; letter-spacing: .02em; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 5.6rem); line-height: .95; text-transform: uppercase; margin-bottom: 14px; }
.lead, .section p, .card p, .contact-panel p, .story-copy p { color: var(--muted); line-height: 1.7; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 18px; }
.btn { min-height: 52px; padding: 12px 20px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; transition: .2s ease; }
.btn-primary { background: linear-gradient(135deg, var(--red), #d63a40); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.03); }
.quick-facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.quick-facts li { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 12px 14px; }
.media-card, .card, .contact-panel, .story-panel, .product-panel { background: var(--panel); border: 1px solid var(--border); box-shadow: var(--shadow); }
.media-card { border-radius: 26px; padding: 14px; }
.media-card img { width: 100%; border-radius: 20px; object-fit: cover; }
.hero-media img { aspect-ratio: 4 / 5; }
.section { padding: 34px 0; }
.section-alt { background: rgba(255,255,255,.025); }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card, .contact-panel, .story-panel, .product-panel { border-radius: 22px; padding: 20px; }
.card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.story-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: 20px; align-items: center; }
.story-photo img, .product-photo img { width: 100%; border-radius: 18px; object-fit: cover; }
.story-photo img { aspect-ratio: 16 / 10; }
.product-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: center; }
.product-photo { width: 100%; max-width: 360px; justify-self: end; margin-left: auto; }
.product-photo img { aspect-ratio: 3 / 4; }
.menu-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; align-items: center; }
.menu-photo { padding: 12px; }
.menu-photo img { width: 100%; border-radius: 16px; object-fit: contain; background: #111; aspect-ratio: 16 / 9; }
.menu-copy { display: grid; gap: 12px; }
.menu-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; min-width: min(100%, 340px); }
.footer-note { padding: 0 0 36px; color: var(--muted); font-size: .92rem; }
@media (max-width: 920px) { .hero-grid, .section-grid, .cards, .story-panel, .product-panel, .menu-panel { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; gap: 10px; align-items: center; justify-content: space-between; }
  .nav-links { gap: 10px 12px; }
  .hero { padding-top: 22px; }
  .wrap { width: min(1120px, calc(100% - 20px)); }
  .brand img { width: 48px; height: 48px; border-radius: 13px; }
  .brand-copy strong { font-size: .94rem; }
  .brand-copy span { font-size: .74rem; }
  .hero h1 { font-size: clamp(2.4rem, 14vw, 4rem); }
  .cta-row, .contact-actions, .menu-actions { flex-direction: column; }
  .btn { width: 100%; }
  .nav .social-icon-link, .nav .lang-toggle, .nav .theme-toggle { width: 30px; height: 30px; min-width: 30px; min-height: 30px; padding: 0; }
  .nav-actions { gap: 8px; }
  .section { padding: 30px 0; }
  .card, .contact-panel, .story-panel, .product-panel { padding: 16px; }
}

html[data-theme="light"] .quick-facts li { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .btn-secondary, html[data-theme="light"] .social-icon-link, html[data-theme="light"] .lang-toggle, html[data-theme="light"] .theme-toggle { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.12); }
html[data-theme="light"] .section-alt { background: rgba(0,0,0,.02); }

.site-credit { text-align: center; padding: 10px 0 20px; font-size: .72rem; color: rgba(255,255,255,.42); }
.site-credit a { color: inherit; text-decoration: none; transition: color .2s ease; }
.site-credit a:hover { color: rgba(241,191,21,.72); }
html[data-theme="light"] .site-credit { color: rgba(0,0,0,.4); }
