/* Load fonts */
@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@600..700&family=Figtree:wght@400;500;600&display=swap');
:root {
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --bg: #0d0b09;
  --bg-2: #14110e;
  --text: #fff9eb;
  --muted: rgba(255, 249, 235, 0.58);
  --border: rgba(255, 255, 255, 0.10);
  --glass-bg: rgba(30,21,10,0.30);
}
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  position: relative;
}
body {
  position: relative;
  overflow-x: hidden;
}
.mesh-bg {
  z-index: 0;
  position: fixed;
  inset: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  opacity: 0.33;
  filter: blur(72px);
  background: 
    radial-gradient(circle at 75% 10%, #de9d59 0, transparent 60%),
    radial-gradient(circle at 20% 20%, #6c4d27 0, transparent 50%),
    radial-gradient(circle at 90% 60%, #945d1e 0, transparent 46%),
    radial-gradient(circle at 50% 70%, #57290c 0, transparent 75%);
  transition: opacity 0.5s ease;
}
.grain-overlay {
  content: '';
  mix-blend-mode: overlay;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" xmlns="http://www.w3.org/2000/svg"><filter id="n" x="0" y="0"><feTurbulence type="fractalNoise" baseFrequency="0.72" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" fill="none" filter="url(%23n)" opacity="0.16"/></svg>');
  opacity: 0.26;
  pointer-events: none;
}
/* Navigation */
nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px) saturate(110%);
  background: rgba(25, 16, 8, 0.58);
  z-index: 50;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 32px;
  height: 72px;
  margin: 0 auto;
}
.logo {
  font-family: 'Clash Display', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.75rem;
  color: var(--accent);
  user-select: none;
}
.logo span {
  color: var(--text);
  font-weight: 600;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: inline-block;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 2rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.23);
  transition: background 0.17s, transform 0.14s, box-shadow 0.16s;
  letter-spacing: 0.01em;
  outline: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc46a, var(--accent-dark));
  transform: scale(1.045);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.37);
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 249, 235, 0.05);
}
/* Hero Section */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
  padding-top: 80px;
}
.hero-content {
  max-width: 630px;
  padding-left: 7vw;
  padding-bottom: 12vh;
}
.hero-headline {
  font-family: 'Clash Display';
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.07;
  margin: 0 0 25px 0;
}
.gradient-text {
  background: linear-gradient(100deg, #f59e0b 30%, #de9d59 74%, #fffbe7 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-subtext {
  color: var(--muted);
  font-size: 1.29rem;
  line-height: 1.63;
  margin-bottom: 40px;
  font-family: 'Figtree';
}
.btn-hero {
  font-size: 1.14rem;
  padding: 1.1em 2.2em;
}
.social-proof {
  margin: 0;
  padding: 34px 0 10px;
  display: flex;
  justify-content: center;
  z-index: 3;
  position: relative;
}
.social-proof-inner {
  background: rgba(245, 158, 11, 0.105);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7em 2.8em;
  color: var(--accent);
  font-family: 'Clash Display';
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.section {
  padding: 120px 0 0 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 2.7rem;
}
.bento {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  width: 100%;
}
.card.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px 0 rgba(27,14,1,0.11), 0 1.5px 23px rgba(245, 158, 11, .07);
  padding: 45px 38px 38px 38px;
  transition: box-shadow 0.19s, transform 0.19s;
  position: relative;
  z-index: 2;
}
.card.glass:hover {
  transform: translateY(-5px) scale(1.014);
  box-shadow: 0 8px 38px 0 rgba(27,14,1,0.15), 0 4px 36px rgba(245, 158, 11, .10);
}
.story h2,
.menu-highlights h2 {
  font-family: 'Clash Display';
  font-size: 2.3rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-top: 0;
}
.story p {
  font-family: 'Figtree';
  font-size: 1.19rem;
  line-height: 1.62;
  color: var(--text);
  margin-bottom: 0;
}
.menu-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.menu-highlights li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.1rem;
}
.menu-highlights li:last-child { border-bottom: none; }
.menu-highlights h3 {
  margin: 0;
  font-family: 'Clash Display';
  font-size: 1.26rem;
  font-weight: 600;
  color: var(--accent);
}
.menu-desc {
  color: var(--muted);
  font-size: 0.99rem;
  font-family: 'Figtree';
  display: block;
  margin-top: 0.28em;
}
.price {
  margin-left: 1em;
  font-family: 'Clash Display';
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.78;
  align-self: flex-start;
}
/* Visit Us & Newsletter */
.visit {
  padding-top: 120px;
  padding-bottom: 90px;
}
.visit-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 2.5rem;
}
.visit-info, .newsletter {
  flex: 1 1 340px;
  min-width: 310px;
  max-width: 480px;
}
.visit-info h2, .newsletter h2 {
  color: var(--accent);
  font-family: 'Clash Display';
  font-size: 2rem;
  margin-top: 0;
}
.hours {
  margin: 16px 0 12px;
  color: var(--text);
  font-family: 'Figtree';
  font-size: 1.06rem;
  line-height: 1.7;
}
.address {
  color: var(--muted);
  font-size: 1rem;
  font-family: 'Figtree';
  margin-bottom: 0;
  margin-top: 12px;
}
.newsletter-form {
  display: flex;
  margin: 28px 0 12px 0;
}
.newsletter-form input[type="email"] {
  background: rgba(255,249,235,0.10);
  border: 1.2px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 9px 0 0 9px;
  font-size: 1rem;
  font-family: 'Figtree';
  outline: none;
  min-width: 0;
  width: 200px;
  transition: border-color 0.24s;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}
.newsletter-form button {
  border-radius: 0 9px 9px 0;
  margin-left: -3px;
}
.privacy {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
}
/* Footer */
footer {
  width: 100%;
  margin-top: 0;
  padding: 40px 0 15px 0;
  background: rgba(18,12,8,0.83);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 1.1rem;
}
.footer-logo {
  font-family: 'Clash Display';
  color: var(--accent);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: var(--muted);
  font-family: 'Figtree';
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.17s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social a {
  margin-right: 1rem;
  color: var(--accent);
  opacity: 0.72;
  transition: color 0.17s, opacity 0.18s;
}
.footer-social a:last-child { margin-right: 0; }
.footer-social a:hover { color: var(--text); opacity: 1; }
.copyright {
  color: var(--muted);
  font-size: 0.98rem;
  align-self: flex-end;
  margin-left: auto;
  margin-top: 0.8rem;
}
/* Animations & Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.hero-headline, .hero-subtext, .btn-hero { opacity: 0; transform: translateY(30px); animation: heroFadeIn 0.71s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-headline { animation-delay: 0.08s; }
.hero-subtext { animation-delay: 0.20s; }
.btn-hero { animation-delay: 0.34s; }
@keyframes heroFadeIn {
  to { opacity: 1; transform: none; }
}
/* Responsive */
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; }
  .visit-wrap { flex-direction: column; }
  .nav-container { padding: 0 12px; }
  .hero-content { padding-left: 4vw; padding-bottom: 6vh; }
}
@media (max-width: 700px) {
  .hero-content { padding-left: 1vw; }
  .section { padding-top: 68px; }
  .card.glass { padding: 28px 13px 23px 13px; }
  .visit-info, .newsletter { min-width: unset; }
  .social-proof-inner { padding: 0.56em 0.81em; }
}
@media (max-width: 500px) {
  .footer-container { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
