/* ==========================================================================
   NARUTO 88 BISTRO - OFFICIAL WEBSITE DESIGN SYSTEM
   Supports Light & Dark Themes • Anime Fusion & Mobile Responsive Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Default Theme: DARK */
:root {
  --bg-dark: #09080c;
  --bg-card: #121017;
  --bg-card-hover: #1a1722;
  --bg-elevated: #1a1724;
  --bg-paper: #14121a;
  --bg-input: rgba(255, 255, 255, 0.05);
  
  --gold-primary: #f5a623;
  --gold-light: #ffd074;
  --vermilion-red: #ff3b30;
  --vermilion-glow: rgba(255, 59, 48, 0.35);
  --ember-accent: #ff6b35;
  
  --text-main: #f4f3f6;
  --text-muted: #a59fb3;
  --text-dark: #6e687b;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(245, 166, 35, 0.35);

  --header-bg: rgba(9, 8, 12, 0.94);
  --modal-overlay-bg: rgba(0, 0, 0, 0.8);
  
  --font-heading: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(245, 166, 35, 0.2);
  --shadow-red-glow: 0 0 35px rgba(255, 59, 48, 0.3);
}

/* Light Theme Variables */
:root[data-theme="light"] {
  --bg-dark: #fcfbfa;
  --bg-card: #ffffff;
  --bg-card-hover: #f6f3eb;
  --bg-elevated: #f3efe4;
  --bg-paper: #f7f4ea;
  --bg-input: #ffffff;
  
  --gold-primary: #d97706;
  --gold-light: #92400e;
  --vermilion-red: #e63946;
  --vermilion-glow: rgba(230, 57, 70, 0.2);
  --ember-accent: #ea580c;
  
  --text-main: #141219;
  --text-muted: #4a4556;
  --text-dark: #767085;
  --border-subtle: rgba(0, 0, 0, 0.12);
  --border-gold: rgba(217, 119, 6, 0.4);

  --header-bg: rgba(252, 251, 250, 0.96);
  --modal-overlay-bg: rgba(20, 18, 25, 0.65);

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 30px rgba(217, 119, 6, 0.15);
  --shadow-red-glow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #a39eb0;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Layout Utilities */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-primary), var(--ember-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--vermilion-red);
}

/* ANIME TOUCHES & DECORATIVE BADGES */
.kanji-watermark {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 12rem;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  color: var(--gold-primary);
  line-height: 1;
}

.anime-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vermilion-red);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
}

:root[data-theme="light"] .eyebrow {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}

/* Button Component System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--ember-accent));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* LOGO & HEADER STYLING */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245,166,35,0.4));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

:root[data-theme="light"] .nav-link {
  color: #383344;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.theme-toggle-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  transform: rotate(20deg);
}

/* MOBILE NAV TOGGLE & FULL DRAWER SYSTEM */
.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-main);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-gold);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-red-glow);
}

.mobile-nav-drawer.active .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
  list-style: none;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--gold-primary);
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

:root[data-theme="dark"] .hero-media img {
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  opacity: 0.65;
}

:root[data-theme="light"] .hero-media img {
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  margin: 1.2rem 0 1rem;
  line-height: 1.1;
  color: var(--text-main);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.meta-item strong {
  color: var(--text-main);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold-primary);
}

/* MARQUEE CONTINUOUS SCROLL BANNER */
.marquee-banner {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-item::after {
  content: '🍥';
  font-size: 1rem;
}

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

/* SECTION STRUCTURE */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-paper {
  background-color: var(--bg-paper);
}

.section-dark {
  background-color: var(--bg-dark);
}

.sec-head {
  margin-bottom: 3.5rem;
}

.sec-head-center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.sec-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.sec-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* MENU CATEGORY PREVIEW CARDS (HOME PAGE) */
.cat-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cat-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cat-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* SECRET NINJA MENU / ANIME COMBOS */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.combo-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-red-glow);
  transition: var(--transition-normal);
}

.combo-card:hover {
  transform: translateY(-6px);
}

.combo-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 59, 48, 0.2);
  color: var(--vermilion-red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.combo-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.combo-items {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.combo-items li::before {
  content: '⚡ ';
  color: var(--gold-primary);
}

.combo-price {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-primary);
}

/* FEATURED DISH CARDS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.feat-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.feat-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feat-card:hover .feat-img img {
  transform: scale(1.08);
}

.feat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feat-body {
  padding: 1.8rem;
}

.feat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.feat-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.feat-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.feat-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* MENU SEARCH & CONTROLS */
.menu-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-search-box {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.menu-search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
}

.menu-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
}

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.menu-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.menu-tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
}

.menu-tab-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.menu-item-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.item-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.tag-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.tag-spicy {
  background: rgba(255, 59, 48, 0.15);
  color: var(--vermilion-red);
}

.item-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
}

.item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.blog-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-title a:hover {
  color: var(--gold-primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SINGLE BLOG POST CONTAINER */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin: 1rem 0;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid var(--border-gold);
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* STORY SPLIT & TIMELINE */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-glow);
}

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

.prose {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

.prose p {
  margin-bottom: 1rem;
}

/* STATS COUNTER BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* WHY CHOOSE US GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* REVIEWS & TESTIMONIALS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.review-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--gold-primary);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.8rem 1.5rem;
}

/* LOCATIONS & CONTACT SECTION */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.location-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.location-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 59, 48, 0.15);
  color: var(--vermilion-red);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.location-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.location-detail svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}

/* FOOTER */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* MODALS & DRAWER SYSTEM */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-red-glow);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 59, 48, 0.2);
  color: var(--vermilion-red);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* RESPONSIVE MOBILE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-media {
    width: 100%;
    opacity: 0.25;
  }
  .hero-content {
    max-width: 100%;
  }
  .split-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 72px;
  }
  .brand-logo-img {
    height: 42px;
  }
  .nav-menu {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding-top: calc(72px + 2rem);
    padding-bottom: 3rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .btn-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-row .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-actions {
    flex-direction: column;
  }
}
