:root {
  --bg: #0f0f10;
  --surface: #161719;
  --surface-2: #1f2124;
  --text: #f4f4f2;
  --muted: #c9c5be;
  --line: rgba(255,255,255,.1);
  --accent: #d97706;
  --accent-2: #f59e0b;
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --radius: 24px;
  --container: min(1140px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217,119,6,.12), transparent 35%),
    linear-gradient(180deg, #0f0f10 0%, #131416 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute; left: 16px; top: -40px; background: #fff; color: #000;
  padding: 10px 14px; border-radius: 10px; z-index: 2000;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.site-header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(16px);
  background: rgba(15,15,16,.78); border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 700; }
.brand img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
}
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand small { color: var(--muted); font-size: .74rem; letter-spacing: .12em; }
.site-nav {
  display: flex; align-items: center; gap: 10px;
}
.site-nav a {
  padding: 12px 14px; border-radius: 999px; color: var(--muted);
}
.site-nav a:hover, .site-nav a:focus-visible { background: rgba(255,255,255,.06); color: var(--text); }
.nav-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #111 !important; font-weight: 800;
}
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: var(--surface);
  color: #fff; border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: #fff; }
.hero {
  position: relative; min-height: min(88vh, 880px); display: grid; align-items: center; overflow: clip;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,16,.94) 0%, rgba(15,15,16,.72) 42%, rgba(15,15,16,.28) 100%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-content { position: relative; z-index: 1; padding: 96px 0; max-width: 700px; }
.eyebrow {
  display: inline-block; margin: 0 0 12px; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.08); color: #f3d4a8; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-section h2, .contact-section h2 {
  margin: 0 0 16px; line-height: 1.04; letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.hero-text { max-width: 58ch; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 20px; border-radius: 999px; font-weight: 800; border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #111; }
.btn-secondary { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--text); }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0;
}
.hero-points li {
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
}
.section { padding: 88px 0; }
.intro-strip { padding-top: 26px; }
.stats-grid, .cards, .menu-grid, .contact-grid, .footer-grid { display: grid; gap: 24px; }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-card, .product-card, .menu-card, .contact-card, .map-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card { padding: 26px; }
.stat-card strong { display: block; font-size: 1.35rem; margin-bottom: 4px; }
.stat-card span { color: var(--muted); }
.section-heading { max-width: 720px; margin-bottom: 30px; }
.section-heading h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.section-heading p:last-child { color: var(--muted); margin: 0; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card { padding: 28px; position: relative; }
.product-card h3 { margin: 18px 0 10px; font-size: 1.45rem; }
.product-card p { margin: 0 0 20px; color: var(--muted); }
.product-card strong { font-size: 1.4rem; }
.card-badge {
  display: inline-flex; padding: 7px 11px; border-radius: 999px; font-size: .8rem;
  color: #111; font-weight: 800; background: linear-gradient(135deg, #fde68a, #f59e0b);
}
.menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { padding: 28px; }
.menu-card h3 { margin-top: 0; font-size: 1.4rem; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.12);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list span { color: var(--muted); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center;
}
.about-section p { color: var(--muted); }
.about-highlights {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 26px;
}
.about-highlights div, .map-placeholder {
  padding: 18px; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 18px;
}
.about-highlights strong { display: block; margin-bottom: 6px; color: var(--text); }
.about-visual img {
  border-radius: 30px; min-height: 520px; width: 100%; object-fit: cover; object-position: center 42%; box-shadow: var(--shadow);
}
.contact-grid { grid-template-columns: 1fr .85fr; align-items: stretch; }
.contact-card, .map-card { padding: 28px; }
.contact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 16px; }
.contact-list li {
  display: grid; gap: 4px; padding-bottom: 16px; border-bottom: 1px dashed rgba(255,255,255,.12);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list span, .map-note { color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-card { display: grid; }
.map-placeholder {
  height: 100%; min-height: 100%; display: grid; align-content: center; background:
  radial-gradient(circle at top, rgba(245,158,11,.18), transparent 35%),
  rgba(255,255,255,.03);
}
.site-footer { padding: 36px 0 60px; border-top: 1px solid var(--line); }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; align-items: start; }
.footer-grid h3 { margin-top: 0; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: var(--muted); }
.footer-grid p { color: var(--muted); max-width: 40ch; }
.footer-brand { margin-bottom: 14px; }

@media (max-width: 980px) {
  .three-up, .menu-grid, .stats-grid, .about-highlights, .contact-grid, .footer-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual img { min-height: 360px; }
  .site-nav {
    position: absolute; right: 16px; top: calc(100% + 10px); width: min(320px, calc(100vw - 32px));
    display: none; background: rgba(22,23,25,.98); border: 1px solid var(--line); border-radius: 22px; padding: 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 14px 16px; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero { min-height: 76vh; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(15,15,16,.74) 0%, rgba(15,15,16,.62) 40%, rgba(15,15,16,.9) 100%); }
  .hero-bg img { object-position: center 28%; }
  .hero-content { padding: 88px 0 56px; max-width: 100%; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .hero-text { font-size: 1rem; }
  .section { padding: 72px 0; }
  .brand span strong { font-size: .95rem; }
  .brand small { font-size: .68rem; }
  .about-visual img { min-height: 300px; object-position: center 35%; }
}
