/* ============================================
   STANLEY BAR-B-QUE — Memphis BBQ
   ============================================ */

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

:root {
  --black: #0D0A08;
  --dark: #141009;
  --dark-2: #1C1510;
  --dark-3: #241C14;
  --red: #C23B22;
  --red-light: #D94F34;
  --cream: #F2E8D9;
  --cream-dark: #D9C9B0;
  --gray: #8A7D70;
  --gray-light: #C0B5A8;
  --border: rgba(242,232,217,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.section { padding: 6rem 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

/* ====== TYPE ====== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
h1 em {
  font-style: italic;
  color: var(--red);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--red); }

.label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242,232,217,0.3);
}
.btn-ghost:hover { border-color: var(--cream); }
.btn.full { width: 100%; text-align: center; }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,10,8,0.97);
  backdrop-filter: blur(12px);
  padding: 1.1rem 2.5rem;
  border-bottom-color: var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo span {
  color: var(--red);
  margin-left: 0.25rem;
  font-style: italic;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-cta {
  color: var(--red);
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--red);
}
.nav-links .nav-cta:hover { background: var(--red); color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,10,8,0.92) 45%,
    rgba(13,10,8,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.kicker {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.hero-content h1 { max-width: 600px; margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ====== STRIP ====== */
.strip {
  background: var(--red);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: slide 32s linear infinite;
  width: max-content;
}
.strip span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.strip .dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== ABOUT ====== */
.about { background: var(--dark); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-photo { height: 560px; overflow: hidden; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text > p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 420px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.fact-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.fact-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ====== MENU ====== */
.menu { background: var(--black); }
.menu-head {
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.menu-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.menu-col h3 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-col ul { list-style: none; }
.menu-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-col li span:first-child {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
}
.menu-col li span:last-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

/* ====== GALLERY STRIP ====== */
.gallery-strip { background: var(--dark); }
.gallery-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
  gap: 3px;
}
.gs-item { overflow: hidden; }
.gs-item img { transition: transform 0.6s ease; }
.gs-item:hover img { transform: scale(1.06); }

/* ====== HOURS ====== */
.hours { background: var(--dark-2); }
.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.hours-text h2 { margin-bottom: 1rem; }
.hours-text > p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 320px;
}
.hours-details { display: flex; flex-direction: column; gap: 2.5rem; }
.hours-block h4 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-light);
}
.hours-row span:last-child { color: var(--cream); font-weight: 400; }
.hours-block p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.hours-note { font-size: 0.78rem !important; color: var(--gray) !important; }

/* ====== CONTACT ====== */
.contact { background: var(--dark); }
.contact-inner { max-width: 700px; }
.contact-inner h2 { margin-bottom: 1rem; }
.contact-inner > p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 90px; }
::placeholder { color: var(--gray); opacity: 0.6; }
.form-confirm { margin-top: 1rem; font-size: 0.82rem; color: var(--red); text-align: center; }
.hidden { display: none; }

/* ====== FOOTER ====== */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.85rem; text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}
.footer p { font-size: 0.78rem; color: var(--gray); }
.footer-links { display: flex; gap: 2.5rem; }
.footer-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-copy { font-size: 0.7rem; color: rgba(242,232,217,0.2); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { height: 400px; order: -1; }
  .menu-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-strip-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gs-item { height: 240px; }
  .hours-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    background: var(--dark); flex-direction: column; justify-content: center;
    padding: 4rem 2rem; gap: 2rem; transition: right 0.3s ease;
    border-left: 1px solid var(--border); z-index: 200; list-style: none;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 201; }
  .form-row { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
@media (max-width: 480px) {
  .gallery-strip-grid { grid-template-columns: 1fr; }
}
