/* ===================================
   JAVIER'S DIRECTORY — MAIN STYLES
   =================================== */

/* --- Variables --- */
:root {
  --primary:    #111111;
  --white:      #FFFFFF;
  --accent:     #A11E22;
  --accent-dk:  #8a1a1d;
  --surface:    #F8F8F8;
  --surface2:   #F2F2F2;
  --border:     #E8E8E8;
  --text-muted: #6B6B6B;
  --text-light: #9B9B9B;
  --star:       #F59E0B;
  --shadow-xs:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 48px rgba(0,0,0,0.15);
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --ease:       0.25s ease;
  --sp:         60px;   /* desktop section padding */
  --container:  1220px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.75; color: var(--text-muted); }
strong { font-weight: 600; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* --- Section --- */
.section { padding: var(--sp) 0; }
.section-sm { padding: calc(var(--sp) * 0.6) 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-surface { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2, .section-header h3 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* --- SVG Icons (star sprites) --- */
.icon-sprites { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- Stars --- */
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.star { width: 16px; height: 16px; flex-shrink: 0; }
.star-full  { color: var(--star); fill: var(--star); }
.star-half  { color: var(--star); fill: var(--star); }
.star-empty { color: var(--border); fill: var(--border); }

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo a { display: flex; align-items: center; }
.site-logo img { height: 42px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }

.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--accent); }
.primary-nav .btn-nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 40px;
}
.primary-nav .btn-nav-cta:hover { background: var(--accent-dk); color: var(--white); }

.header-search-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  transition: background var(--ease), color var(--ease);
}
.header-search-btn:hover { background: var(--surface); color: var(--accent); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0 20px;
  z-index: 899;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav a:last-child { border-bottom: none; }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d0505;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,5,5,0.78) 0%, rgba(15,5,5,0.72) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp) 24px;
  max-width: 860px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(161,30,34,0.15);
  border: 1px solid rgba(161,30,34,0.4);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.hero-features span { display: flex; align-items: center; gap: 6px; }
.hero-features svg { color: var(--accent); }

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 40px;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(161,30,34,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover { background: #2a2a2a; color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===================================
   LOCATION CARDS
   =================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.location-card-img {
  position: relative;
  height: 180px;
  background: var(--surface2);
  overflow: hidden;
}
.location-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.location-card:hover .location-card-img img { transform: scale(1.04); }
.location-card-img .card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 40px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.location-card-img .open-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 600;
}
.open-badge.open   { background: #dcfce7; color: #166534; }
.open-badge.closed { background: #fee2e2; color: #991b1b; }

.location-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.location-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
.location-card-name a { color: inherit; }
.location-card-name a:hover { color: var(--accent); }
.location-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.rating-num { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.review-count { font-size: 0.82rem; color: var(--text-muted); }

.location-card-info { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; flex: 1; }
.location-card-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.location-card-info-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.phone-link { color: var(--text-muted); }
.phone-link:hover { color: var(--accent); }

.location-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.location-card-footer .btn { flex: 1; justify-content: center; }

/* ===================================
   SEARCH SECTION
   =================================== */
.search-section { background: var(--primary); }
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.search-field { flex: 1; min-width: 200px; }
.search-field label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.search-field input,
.search-field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--primary);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
}
.search-field input:focus,
.search-field select:focus { border-color: var(--accent); }
.search-btn { height: 46px; padding: 0 28px; border-radius: var(--radius-sm); }

.search-results-list { margin-top: 24px; display: none; }
.search-results-list.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.search-result-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.search-result-item:hover { box-shadow: var(--shadow-md); }
.search-result-item a { color: var(--primary); font-weight: 600; }
.search-result-item a:hover { color: var(--accent); }

/* ===================================
   MENU SECTION
   =================================== */
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.menu-tab {
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--white);
}
.menu-tab:hover   { border-color: var(--accent); color: var(--accent); }
.menu-tab.active  { background: var(--accent); border-color: var(--accent); color: var(--white); }

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-table { width: 100%; }
.menu-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 2px solid var(--border);
}
.menu-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.menu-table tr:last-child td { border-bottom: none; }
.menu-item-name { font-weight: 600; font-size: 0.95rem; color: var(--primary); }
.menu-item-desc { font-size: 0.84rem; color: var(--text-muted); margin-top: 2px; line-height: 1.5; }
.menu-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
  padding-left: 16px;
  text-align: right;
}

/* ===================================
   FEATURE CARDS (Why Guests Love)
   =================================== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--ease), transform var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(161,30,34,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p  { font-size: 0.88rem; line-height: 1.65; }

/* ===================================
   MENU ITEM CARDS (Popular Items)
   =================================== */
.menu-items-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.menu-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-item-card-img {
  height: 160px;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.menu-item-card-body { padding: 16px; }
.menu-item-card-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.menu-item-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.menu-item-card-price { font-weight: 700; color: var(--accent); font-size: 0.9rem; }

/* ===================================
   REVIEW CARDS
   =================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  transition: box-shadow var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-meta-name   { font-weight: 600; font-size: 0.92rem; }
.review-meta-date   { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }
.review-rating      { margin-bottom: 10px; }
.review-text        { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.review-text::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--accent); line-height: 0; vertical-align: -0.3em; margin-right: 2px; }

/* ===================================
   FAQ
   =================================== */
.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  gap: 16px;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--ease); color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-answer { display: none; padding-bottom: 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ===================================
   LOCATION PAGE HERO
   =================================== */
.location-hero {
  position: relative;
  min-height: 440px;
  display: flex; align-items: flex-end;
  background: var(--primary);
  overflow: hidden;
}
.location-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.location-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.location-hero-content {
  position: relative; z-index: 2;
  padding: 48px 24px;
  width: 100%; max-width: var(--container); margin: 0 auto;
}
.location-hero-content .breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.location-hero-content .breadcrumb a { color: rgba(255,255,255,0.65); }
.location-hero-content .breadcrumb a:hover { color: var(--white); }
.location-hero-content .breadcrumb span { color: rgba(255,255,255,0.4); }
.location-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4); margin-bottom: 12px;
}
.location-hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  margin-bottom: 24px;
}
.location-hero-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.88rem; color: rgba(255,255,255,0.82);
}
.location-hero-meta-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.location-hero-btns { display: flex; gap: 10px; flex-wrap: nowrap; }

/* ===================================
   LOCATION INFO GRID
   =================================== */
.location-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.hours-table { width: 100%; }
.hours-table td { padding: 7px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--primary); }
.hours-table td:last-child  { color: var(--text-muted); text-align: right; }
.hours-table .today-row td  { color: var(--accent); font-weight: 700; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===================================
   OTHER LOCATIONS (on single page)
   =================================== */
.other-locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.mini-location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.mini-location-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mini-location-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.mini-location-card h4 a { color: var(--primary); }
.mini-location-card h4 a:hover { color: var(--accent); }
.mini-location-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.mini-location-card .mini-btn { margin-top: 12px; }

/* ===================================
   LOCATIONS PAGE
   =================================== */
.locations-page-hero {
  background: var(--primary);
  padding: 50px 0;
  text-align: center;
  color: white;
}
.locations-page-hero h1 { color: var(--white); margin-bottom: 10px; }
.locations-page-hero p  { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto; }

.state-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.state-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  font-size: 0.83rem; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer; background: white;
  transition: all var(--ease);
}
.state-btn:hover   { border-color: var(--accent); color: var(--accent); }
.state-btn.active  { background: var(--accent); border-color: var(--accent); color: white; }

/* ===================================
   FORMS
   =================================== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--primary); }
.form-control {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--primary); background: var(--white);
  transition: border-color var(--ease); outline: none;
}
.form-control:focus { border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===================================
   BREADCRUMBS
   =================================== */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-light); margin: 0 6px; }

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.3rem; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-muted); font-size: 0.9rem;
  transition: all var(--ease);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--text-muted);
  transition: color var(--ease); display: flex; align-items: center; gap: 5px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===================================
   MOBILE ACTION BAR
   =================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 980;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-action-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
  text-decoration: none;
}
.mobile-action-bar a:hover { color: var(--accent); }
.mobile-action-bar a span:first-child { font-size: 1.2rem; }

/* ===================================
   PAGE LAYOUTS
   =================================== */
.page-hero {
  background: var(--primary);
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.7); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; }
.about-img-placeholder {
  height: 420px;
  background: linear-gradient(135deg, #0d0505 0%, #2d1010 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.1);
}
.about-content h2 { margin-bottom: 18px; }
.about-content h3 { font-size: 1.25rem; margin: 22px 0 10px; }
.about-content p  { margin-bottom: 16px; }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-info-card-icon {
  width: 44px; height: 44px;
  background: rgba(161,30,34,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-info-card-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: 0.88rem; margin-bottom: 3px; }
.contact-info-card p  { font-size: 0.85rem; margin: 0; }

.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.4rem; margin: 30px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.privacy-content h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.privacy-content p  { margin-bottom: 14px; }
.privacy-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.privacy-content ul li { color: var(--text-muted); margin-bottom: 6px; font-size: 0.92rem; line-height: 1.65; }

/* ===================================
   UTILITY
   =================================== */
.text-center   { text-align: center; }
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.w-100 { width: 100%; }
.divider { height: 1px; background: var(--border); margin: var(--sp) 0; }

/* ===================================
   SKELETON LOADER
   =================================== */
.skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===================================
   ACCESSIBILITY
   =================================== */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.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; }

/* ===================================
   RESPONSIVE — TABLET (≤1024px)
   =================================== */
@media (max-width: 1024px) {
  :root { --sp: 45px; }
  .locations-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid     { grid-template-columns: repeat(3, 1fr); }
  .menu-items-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: repeat(2, 1fr); }
  .other-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .about-grid        { grid-template-columns: 1fr; }
  .about-img-placeholder { height: 280px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .location-info-grid { grid-template-columns: 1fr; }
  .hero-btns         { flex-wrap: nowrap; }
  .search-results-list.active { grid-template-columns: repeat(2,1fr); }
}

/* ===================================
   RESPONSIVE — MOBILE (≤768px)
   =================================== */
@media (max-width: 768px) {
  :root { --sp: 30px; }

  .primary-nav      { display: none; }
  .header-search-btn { display: none; }
  .hamburger        { display: flex; }

  .hero { min-height: 440px; }
  .hero h1 { font-size: 2rem; }
  .hero-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }

  .locations-grid    { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .menu-items-grid   { grid-template-columns: 1fr 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .other-locations-grid { grid-template-columns: 1fr 1fr; }
  .search-results-list.active { grid-template-columns: 1fr; }

  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; }
  .footer-brand p    { max-width: 100%; }

  .mobile-action-bar { display: flex; }
  body { padding-bottom: 64px; }

  .search-box     { flex-direction: column; padding: 20px; }
  .search-field   { min-width: 100%; }

  .location-hero  { min-height: 360px; }
  .location-hero-btns { flex-wrap: wrap; }

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

  .menu-table th:nth-child(2), .menu-table td:nth-child(2) { display: none; }

  .about-grid     { gap: 24px; }
  .section-header { margin-bottom: 28px; }

  .state-filter   { gap: 6px; }
  .state-btn      { padding: 7px 14px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-btns { grid-template-columns: 1fr 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .other-locations-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
}
