/* ============================================================
   LongHorn Steakhouse Menu — style.css
   Modern Dark Theme | Glassmorphism | Full Responsive 2026
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --brand-red:      #c0392b;
  --brand-red-dark: #96281b;
  --brand-red-glow: rgba(192, 57, 43, 0.35);
  --brand-gold:     #d4a017;
  --brand-gold-light: #f0c040;
  --brand-amber:    #e67e22;

  --bg-darkest:   #0a0a0c;
  --bg-dark:      #111118;
  --bg-card:      #16161e;
  --bg-card-hover:#1e1e28;
  --bg-glass:     rgba(22, 22, 30, 0.7);
  --bg-glass-nav: rgba(10, 10, 12, 0.92);

  --text-primary:   #f0ede8;
  --text-secondary: #a09890;
  --text-muted:     #6b6560;
  --text-accent:    var(--brand-gold);

  --border-subtle:  rgba(255,255,255,0.07);
  --border-card:    rgba(255,255,255,0.1);
  --border-accent:  rgba(212, 160, 23, 0.4);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px var(--brand-red-glow);
  --shadow-gold: 0 0 20px rgba(212,160,23,0.3);

  --transition-fast: 0.18s ease;
  --transition-med:  0.3s ease;
  --transition-slow: 0.5s ease;

  --nav-height: 70px;
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--brand-red-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-red); }

/* ---- Selection ---- */
::selection { background: var(--brand-red); color: #fff; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
}

.navbar {
  height: 100%;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-med);
}

.navbar.scrolled {
  background: rgba(10,10,12,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 6px rgba(192,57,43,0.5));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--brand-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,57,43,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,160,23,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0d0810 0%, #0a0a0c 40%, #100808 100%);
}

/* Animated grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-darkest) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
  animation: hero-fade-in 0.9s ease forwards;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #e88;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: badge-pulse 3s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-accent {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-amber), var(--brand-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.6);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: transparent;
  color: var(--brand-gold);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border-accent);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(212,160,23,0.08);
  box-shadow: 0 4px 20px rgba(212,160,23,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--brand-gold);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border-accent);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(212,160,23,0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  width: fit-content;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.scroll-arrow { font-size: 18px; }

/* ============================================================
   DISCLAIMER NOTICE
   ============================================================ */
.disclaimer-notice {
  background: rgba(212, 160, 23, 0.08);
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 12px 0;
  text-align: center;
}

.disclaimer-notice p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.disclaimer-notice a {
  color: var(--brand-gold);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.disclaimer-notice a:hover { color: var(--brand-gold-light); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-menu,
.section-locations,
.section-why {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #e06050;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   MENU TABS
   ============================================================ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.tab-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: transparent;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(192,57,43,0.4);
}

/* ============================================================
   MENU PANELS
   ============================================================ */
.menu-panel {
  display: none;
  animation: panel-in 0.4s ease;
}

.menu-panel.active { display: block; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.panel-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.drinks-section { display: flex; flex-direction: column; gap: 0; }

.drinks-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-accent);
}

/* ============================================================
   MENU GRID & CARDS
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,160,23,0.15);
  border-color: rgba(212,160,23,0.25);
}

.menu-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-darkest);
}

.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img-wrap img {
  transform: scale(1.06);
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 1;
}

.menu-badge.bestseller {
  background: linear-gradient(135deg, var(--brand-red), #a93226);
  color: #fff;
}

.menu-badge.premium {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-amber));
  color: #1a0e00;
}

.menu-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-gold);
}

.calories {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.section-locations {
  background: linear-gradient(180deg, var(--bg-darkest) 0%, #0d0810 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-accent);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.location-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.location-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.location-cities li {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.location-cities li:hover {
  background: rgba(192,57,43,0.12);
  color: var(--text-primary);
  border-color: rgba(192,57,43,0.3);
}

.locations-footer {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.locations-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

.locations-footer strong { color: var(--text-primary); }

/* ============================================================
   WHY LONGHORN SECTION
   ============================================================ */
.section-why {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.section-why::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.05) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(192,57,43,0.3));
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 0;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 360px;
}

.footer-domain {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold);
  opacity: 0.8;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--brand-gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PAGE LAYOUTS (About, Contact, Privacy, Disclaimer)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(192,57,43,0.15) 0%, transparent 60%),
    var(--bg-darkest);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content {
  padding: 80px 0;
}

.page-content .container {
  max-width: 860px;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color var(--transition-med);
}

.content-block:hover { border-color: var(--border-accent); }

.content-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: 'Playfair Display', serif;
}

.content-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 8px;
  font-family: 'Inter', sans-serif;
}

.content-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.content-block ul, .content-block ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.content-block li {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  list-style: disc;
}

.content-block a {
  color: var(--brand-gold);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.content-block a:hover { color: var(--brand-gold-light); }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info-item a:hover { color: var(--brand-gold); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.2);
}

.form-group textarea { min-height: 120px; }

.form-group select option { background: var(--bg-card); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.5);
}

.success-msg {
  display: none;
  padding: 14px 18px;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.3);
  border-radius: var(--radius-md);
  color: #2ed573;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}

/* About page team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition-med);
}

.team-card:hover { border-color: var(--border-accent); }

.team-avatar {
  font-size: 48px;
  margin-bottom: 12px;
}

.team-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(192,57,43,0.5);
  transition: all var(--transition-fast);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transform: translateY(20px);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.7);
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

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

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,12,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-110%);
    transition: transform var(--transition-med);
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--radius-md);
  }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    width: 100%;
  }

  .stat-divider { width: 60%; height: 1px; }

  .hero-cta { flex-direction: column; align-items: center; }

  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  /* Tabs */
  .menu-tabs {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
    scroll-snap-type: x mandatory;
  }

  .tab-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 12px;
    padding: 8px 14px;
  }

  /* Grid */
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

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

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Page */
  .content-block { padding: 24px; }

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }

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

  .section-menu,
  .section-locations,
  .section-why {
    padding: 64px 0;
  }

  .stat-num { font-size: 1.6rem; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.10s; }
.fade-up:nth-child(3) { transition-delay: 0.15s; }
.fade-up:nth-child(4) { transition-delay: 0.20s; }
.fade-up:nth-child(5) { transition-delay: 0.25s; }
.fade-up:nth-child(6) { transition-delay: 0.30s; }
