/* ============================================================
   TONI'S DEPOT — Main Stylesheet
   Railroad Americana aesthetic
   Built by OHSweet Hospitality (ohsweet-hospitality.com)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Playfair+Display:wght@400;700;900&family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:        #F5EDD8;
  --parchment:    #EDE0C4;
  --dark-brown:   #7A0019;
  --mid-brown:    #5C3D2E;
  --rust:         #2B1A0E;
  --rust-light:   #402A18;
  --gold:         #C4973F;
  --gold-light:   #D4A94F;
  --warm-gray:    #7A7065;
  --off-white:    #FDFAF4;
  --near-black:   #1A1007;
  --text-dark:    #3D1A10;
  --text-mid:     #5C3D2E;
  --text-light:   #7A7065;
  --border:       rgba(196, 151, 63, 0.3);
  --shadow:       0 4px 24px rgba(43, 26, 14, 0.12);
  --shadow-lg:    0 8px 40px rgba(43, 26, 14, 0.18);

  --font-script:  'Lobster', cursive;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-label:   'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Lato', Arial, sans-serif;

  --radius:       4px;
  --radius-lg:    8px;
  --max-width:    1140px;
  --transition:   0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.label-tag {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.light { color: var(--cream); }

.section-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-sub.light { color: rgba(245, 237, 216, 0.8); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 28px;
}

.divider.center { margin: 16px auto 28px; }

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--off-white);
  border-color: var(--rust);
}
.btn-primary:hover { background: var(--rust-light); border-color: var(--rust-light); }

.btn-gold {
  background: var(--gold);
  color: var(--dark-brown);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn-outline:hover { background: var(--off-white); color: var(--dark-brown); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}
.btn-outline-dark:hover { background: var(--dark-brown); color: var(--off-white); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--gold);
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.announcement-bar:hover {
  background: var(--gold-light);
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

.announcement-track span {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-right: 0;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(122, 0, 25, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo-est {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 151, 63, 0.75);
  margin-top: 2px;
}

.nav-logo-sub {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.75);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--cream); }

.nav-links .nav-order {
  background: var(--rust);
  color: var(--off-white);
  padding: 8px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--rust);
}

.nav-links .nav-order:hover { background: var(--rust-light); }

.nav-phone {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone::before {
  content: '📞';
  font-size: 0.9rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--dark-brown);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(196, 151, 63, 0.03) 120px,
      rgba(196, 151, 63, 0.03) 122px
    ),
    linear-gradient(to bottom, rgba(196,151,63,0.15) 0%, rgba(43,26,14,0.45) 100%),
    url('images/depot-building.jpg');
  background-size: auto, cover, cover;
  background-position: 0 0, center, center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 152px 24px 80px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.hero-title .slide-left,
.hero-title .slide-right {
  display: block;
  opacity: 0;
  animation-duration: 0.9s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

.hero-title .slide-left {
  transform: translateX(-100px);
  animation-name: slideInLeft;
  animation-delay: 0.2s;
  color: var(--cream);
}

.hero-title .slide-right {
  transform: translateX(100px);
  animation-name: slideInRight;
  animation-delay: 0.45s;
  color: var(--gold);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-title span { color: var(--gold); }

.hero-est {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.6);
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.hero-rule-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-rule-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 237, 216, 0.85);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero-location {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 151, 63, 0.8);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-hours-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(196, 151, 63, 0.12);
  border-top: 1px solid rgba(196, 151, 63, 0.25);
  z-index: 2;
}

.hero-hours-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-hours-item {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-hours-item strong { color: var(--gold); }

/* ============================================================
   KNOWN FOR STRIP
   ============================================================ */
#known-for {
  background: var(--dark-brown);
  padding: 56px 0;
  border-bottom: 2px solid var(--gold);
}

.known-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.known-for-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 40px;
  border-right: 1px solid rgba(196, 151, 63, 0.2);
}

.known-for-item:last-child { border-right: none; }

.known-for-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.known-for-title {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.known-for-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 237, 216, 0.6);
  line-height: 1.6;
}

/* ============================================================
   WEEKLY SPECIALS
   ============================================================ */
#specials {
  background: var(--dark-brown);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

#specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 200px,
      rgba(196, 151, 63, 0.04) 200px,
      rgba(196, 151, 63, 0.04) 202px
    );
  pointer-events: none;
}

#specials .label-tag { color: rgba(196, 151, 63, 0.9); }
#specials .section-title { color: var(--cream); }
#specials .section-sub { color: rgba(245, 237, 216, 0.6); }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.special-card {
  background: rgba(245, 237, 216, 0.06);
  border: 1px solid rgba(196, 151, 63, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 16px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.special-card:hover {
  transform: translateY(-4px);
  background: rgba(245, 237, 216, 0.1);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.special-card.today-active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(196, 151, 63, 0.35);
  transform: translateY(-4px) scale(1.03);
}

.special-card.today-active::before {
  content: "TODAY";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: var(--off-white);
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: 3px;
}

.special-card.today-active .special-day { color: var(--dark-brown); }
.special-card.today-active .special-name { color: var(--dark-brown); }
.special-card.today-active .special-desc { color: rgba(43, 26, 14, 0.7); }

.special-day {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.special-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  line-height: 1.3;
}

.special-desc {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.5);
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

#specials .specials-note {
  color: rgba(245, 237, 216, 0.4);
  position: relative;
  z-index: 1;
}

#specials .specials-note a {
  color: var(--gold);
}

@media (max-width: 900px) {
  .specials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FEATURED ITEMS
   ============================================================ */
#featured {
  background: var(--cream);
  padding: 88px 0;
}

.featured-header {
  text-align: center;
  margin-bottom: 56px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--mid-brown) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder style — replace with real food photos */
.featured-img-placeholder {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rust);
  color: var(--off-white);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.featured-body { padding: 24px; }

.featured-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.featured-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.featured-price {
  font-family: var(--font-label);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rust);
}

.featured-link {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.featured-link:hover { gap: 8px; }

/* ============================================================
   OUR STORY
   ============================================================ */
#story {
  background: var(--dark-brown);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Railroad track decorative lines */
#story::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(196, 151, 63, 0.15) 0px,
    rgba(196, 151, 63, 0.15) 20px,
    transparent 20px,
    transparent 35px
  );
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-img-wrap {
  position: relative;
}

.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #6B2A1A 0%, #3D1A10 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(196, 151, 63, 0.2);
}

.story-img-placeholder {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.25);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--dark-brown);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
}

.story-content .section-title { color: var(--cream); }

.story-content .section-sub {
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 24px;
}

.story-content p {
  font-size: 1rem;
  color: rgba(245, 237, 216, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(196, 151, 63, 0.2);
}

.story-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.story-stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.5);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   MENU PREVIEW
   ============================================================ */
#menu-preview {
  background: var(--off-white);
  padding: 88px 0;
}

.menu-preview-header {
  text-align: center;
  margin-bottom: 52px;
}

.menu-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.menu-cat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
}

.menu-cat-card:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-cat-card:hover .menu-cat-name,
.menu-cat-card:hover .menu-cat-count {
  color: var(--cream);
}

.menu-cat-card:hover .menu-cat-icon { filter: brightness(1.5); }

.menu-cat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.menu-cat-name {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-brown);
  display: block;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.menu-cat-count {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.menu-preview-cta { text-align: center; }

/* ============================================================
   SUB CLUB BANNER
   ============================================================ */
#sub-club {
  background: var(--rust);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

#sub-club::before {
  content: '🚂';
  position: absolute;
  font-size: 18rem;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  line-height: 1;
}

.sub-club-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.sub-club-content {}

.sub-club-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.sub-club-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sub-club-perk {
  background: rgba(253, 250, 244, 0.1);
  border: 1px solid rgba(253, 250, 244, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.sub-club-perk-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 12px;
}

.sub-club-perk strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 8px;
}

.sub-club-perk p {
  font-size: 0.88rem;
  color: rgba(253, 250, 244, 0.75);
  line-height: 1.6;
  margin: 0;
}

.sub-club-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(253, 250, 244, 0.15);
}

.sub-club-bonus {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sub-club-bonus-badge {
  background: var(--gold);
  color: var(--dark-brown);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
}

.sub-club-bonus-text {
  font-size: 0.9rem;
  color: rgba(253, 250, 244, 0.8);
}

.sub-club-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.65);
  margin-bottom: 10px;
  display: block;
}

.sub-club-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.sub-club-desc {
  font-size: 1rem;
  color: rgba(253, 250, 244, 0.8);
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
#location {
  background: var(--cream);
  padding: 88px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-brown);
  width: 130px;
}

.hours-table td:last-child { color: var(--text-mid); }

.hours-table .today td { color: var(--rust); font-weight: 700; }
.hours-table .closed td:last-child { color: var(--text-light); }

.location-info { margin-top: 24px; }

.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.location-detail-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-detail-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-detail-text strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-brown);
  margin-bottom: 3px;
}

.location-detail-text a {
  color: var(--rust);
  transition: color var(--transition);
}

.location-detail-text a:hover { color: var(--rust-light); }

.map-embed {
  width: 100%;
  height: 280px;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--off-white);
  padding: 88px 0;
}

.faq-header { text-align: center; margin-bottom: 52px; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: var(--font-label);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--rust);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--near-black);
  padding: 64px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(245, 237, 216, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 151, 63, 0.15);
  border: 1px solid rgba(196, 151, 63, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
}

.footer-col-title {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245, 237, 216, 0.55);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(245, 237, 216, 0.55);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(245, 237, 216, 0.55);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(196, 151, 63, 0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.3);
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(245, 237, 216, 0.3);
}

.footer-credit a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-credit a:hover { color: var(--gold-light); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-brown);
  padding: 132px 32px 48px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-label);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid rgba(196, 151, 63, 0.15);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .mobile-order {
  background: var(--rust);
  color: var(--off-white);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  border: none;
  margin-top: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .known-for-grid { grid-template-columns: 1fr; }
  .known-for-item { border-right: none; border-bottom: 1px solid rgba(196, 151, 63, 0.2); }
  .known-for-item:last-child { border-bottom: none; }

  .featured-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-tag { bottom: -12px; right: -8px; }
  #story::before { display: none; }

  .menu-cat-grid { grid-template-columns: repeat(2, 1fr); }

  .location-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .sub-club-inner { flex-direction: column; }
  .sub-club-perks { grid-template-columns: 1fr; }
  .sub-club-footer { flex-direction: column; align-items: flex-start; }

  .hero-hours-inner { gap: 20px; }
}

@media (max-width: 580px) {
  .section-pad { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero {
  background: var(--dark-brown);
  padding: 152px 0 56px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.menu-hero .section-title { color: var(--cream); }

.menu-nav-sticky {
  position: sticky;
  top: 102px;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-nav-inner {
  display: flex;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.menu-nav-btn {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 20px;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}

.menu-nav-btn:hover { color: var(--dark-brown); }
.menu-nav-btn.active { color: var(--rust); border-bottom-color: var(--rust); }

.menu-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.menu-section:last-child { border-bottom: none; }

.menu-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 6px;
}

.menu-section-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 32px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.menu-item:hover { border-color: var(--gold); }
.menu-item.out-of-stock { opacity: 0.5; }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.menu-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.menu-item-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}

.tag-gf { background: rgba(0, 130, 80, 0.1); color: #007850; }
.tag-classic { background: rgba(139, 58, 42, 0.1); color: var(--rust); }
.tag-oos { background: rgba(120,120,120,0.1); color: var(--text-light); }
.tag-house { background: rgba(196, 151, 63, 0.15); color: #8B6914; }

.menu-item-price {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rust);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .menu-items-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--dark-brown);
  padding: 152px 0 64px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.about-hero .section-title { color: var(--cream); }
.about-hero .section-sub { color: rgba(245,237,216,0.7); margin: 0 auto; }

.about-body { padding: 80px 0; }

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 16px;
  margin-top: 32px;
}

.about-text h2:first-child { margin-top: 0; }

.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-img-stack { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--parchment), var(--mid-brown));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  width: 55%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--mid-brown), var(--dark-brown));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--off-white);
  position: absolute;
  bottom: -24px;
  right: -16px;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.img-placeholder-text {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.25);
}

@media (max-width: 860px) {
  .about-content-grid { grid-template-columns: 1fr; }
  .about-img-stack { margin-bottom: 40px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--dark-brown);
  padding: 152px 0 64px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.contact-hero .section-title { color: var(--cream); }

.contact-body { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-map {
  width: 100%;
  height: 420px;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
