/* ===== RAMEN DOWNTOWN - MASTER STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,500;1,9..144,600;1,9..144,700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --orange-primary: #E8580A;
  --orange-dark: #B83E00;
  --orange-light: #FF7B35;
  --orange-glow: #FF9A5C;
  --orange-pale: #FFF0E6;
  --cream: #FDF6EE;
  --dark-brown: #1A0A00;
  --mid-brown: #3D1C00;
  --text-dark: #1A0A00;
  --text-muted: #7A4A28;
  --white: #FFFFFF;
  --shadow-warm: 0 20px 60px rgba(232, 88, 10, 0.25);
  --shadow-deep: 0 40px 100px rgba(26, 10, 0, 0.4);
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ink-bg: #080400;
  --ink-panel: #160b00;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--orange-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, opacity 0.3s ease;
  opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 10, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 60px;
  box-shadow: 0 4px 30px rgba(232, 88, 10, 0.2);
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo span {
  color: var(--orange-primary);
}

.logo-bowl {
  font-size: 1.8rem;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--orange-glow); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--orange-primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange-primary) !important;
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(232, 88, 10, 0.4);
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 88, 10, 0.5) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== SITE TOP NAV (matches homepage index.html) ===== */
.mob-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mob-ov.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mob-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(265px, 86vw);
  height: 100vh;
  height: 100dvh;
  max-height: -webkit-fill-available;
  background: var(--ink-panel);
  z-index: 9999;
  padding: max(72px, env(safe-area-inset-top)) 30px 40px calc(30px + env(safe-area-inset-right, 0px));
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.4s ease;
  box-sizing: border-box;
}
.mob-menu.on {
  right: 0;
}
.mob-menu a {
  color: rgba(255, 248, 242, 0.88);
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease;
  text-decoration: none;
}
.mob-menu a:hover {
  color: var(--orange-primary);
}

#navBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 26px calc(60px + env(safe-area-inset-right, 0px)) 26px calc(60px + env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 24px);
  transition: padding 0.45s ease, background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
}
#navBar.scrolled {
  padding: 14px calc(60px + env(safe-area-inset-right, 0px)) 14px calc(60px + env(safe-area-inset-left, 0px));
  background: rgba(8, 4, 0, 0.95);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(232, 88, 10, 0.1);
}
#navBar .nav-logo {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.08;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: auto;
  min-width: 0;
  max-width: min(100%, 58vw);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
}
#navBar .nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
#navBar .nav-logo-mark .nav-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-height: 52px;
  max-width: min(200px, 32vw);
  object-fit: contain;
  object-position: center left;
  pointer-events: none;
}
#navBar .nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-transform: uppercase;
}
#navBar .logo-line {
  display: block;
  letter-spacing: 0.18em;
  font-weight: 800;
}
#navBar .logo-ramen {
  color: var(--white);
  font-size: 1.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
#navBar .logo-downtown {
  color: var(--orange-glow);
  font-size: 1.05em;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(232, 88, 10, 0.42);
}
#navBar .nav-links {
  display: flex;
  list-style: none;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}
#navBar .nav-links a {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 248, 242, 0.92);
  text-decoration: none;
  transition: color 0.3s ease, filter 0.3s ease;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
#navBar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-glow));
  transition: width 0.3s ease;
}
#navBar .nav-links a:hover,
#navBar .nav-links a:focus-visible {
  color: var(--white);
  filter: brightness(1.08);
}
#navBar .nav-links a:hover::after,
#navBar .nav-links a:focus-visible::after {
  width: 100%;
}
#navBar .nav-links a.active {
  color: var(--white);
}
#navBar .nav-links a.active::after {
  width: 100%;
}
#navBar .nav-cta {
  background: var(--orange-primary) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(232, 88, 10, 0.35) !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
#navBar .nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px);
}
#navBar .nav-cta::after {
  display: none !important;
}
#navBar .ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  margin-left: auto;
  padding: 5px;
}
#navBar .ham span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s ease;
}

/* Language switcher (globe icon) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  list-style: none;
}
.lang-switch-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 88, 10, 0.35);
  background: rgba(232, 88, 10, 0.08);
  color: var(--orange-glow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.lang-switch-toggle:hover {
  background: rgba(232, 88, 10, 0.18);
  border-color: rgba(232, 88, 10, 0.55);
  color: var(--white);
  transform: translateY(-1px);
}
.lang-switch-toggle:focus-visible {
  outline: 2px solid var(--orange-glow);
  outline-offset: 2px;
}
.lang-globe-icon {
  display: block;
  flex-shrink: 0;
}
.mob-menu .lang-switch {
  display: none !important;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: flex-start;
}
.nav-end .lang-switch {
  margin-right: 10px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  #navBar {
    padding: 22px calc(24px + env(safe-area-inset-right, 0px)) 22px calc(24px + env(safe-area-inset-left, 0px));
  }
  #navBar.scrolled {
    padding: 13px calc(24px + env(safe-area-inset-right, 0px)) 13px calc(24px + env(safe-area-inset-left, 0px));
  }
  #navBar .nav-logo {
    max-width: min(100%, 50vw);
  }
}

@media (max-width: 1199px) {
  #navBar .ham {
    display: flex;
  }
  #navBar .nav-links {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #navBar {
    padding: 16px calc(26px + env(safe-area-inset-right, 0px)) 16px calc(26px + env(safe-area-inset-left, 0px));
  }
  #navBar.scrolled {
    padding: 13px calc(26px + env(safe-area-inset-right, 0px)) 13px calc(26px + env(safe-area-inset-left, 0px));
  }
  #navBar .nav-logo {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
    max-width: calc(100vw - 100px);
    gap: 8px;
  }
  #navBar .nav-logo-mark .nav-logo-img {
    height: 44px;
    max-height: 44px;
    max-width: min(180px, 38vw);
  }
  #navBar .logo-line {
    letter-spacing: 0.1em;
  }
}

/* ===== TORN PAPER EDGE ===== */
/* ═══════════════════════════════════════════════
   WAVY CLOUD SECTION DIVIDERS
   Smooth organic waves  -  matches reference design
═══════════════════════════════════════════════ */

.torn-bottom {
  position: relative;
}

/* Bottom wave  -  cream (default) */
.torn-bottom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 5;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23FDF6EE' d='M0,55 C80,80 160,22 280,48 C400,74 460,16 580,44 C700,72 760,12 900,40 C1040,68 1100,18 1240,46 C1340,66 1400,28 1440,50 L1440,90 L0,90 Z'/%3E%3C/svg%3E");
}

.torn-bottom-dark::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%231A0A00' d='M0,55 C80,80 160,22 280,48 C400,74 460,16 580,44 C700,72 760,12 900,40 C1040,68 1100,18 1240,46 C1340,66 1400,28 1440,50 L1440,90 L0,90 Z'/%3E%3C/svg%3E");
}

.torn-bottom-orange::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23E8580A' d='M0,55 C80,80 160,22 280,48 C400,74 460,16 580,44 C700,72 760,12 900,40 C1040,68 1100,18 1240,46 C1340,66 1400,28 1440,50 L1440,90 L0,90 Z'/%3E%3C/svg%3E");
}

.torn-bottom-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFFFF' d='M0,55 C80,80 160,22 280,48 C400,74 460,16 580,44 C700,72 760,12 900,40 C1040,68 1100,18 1240,46 C1340,66 1400,28 1440,50 L1440,90 L0,90 Z'/%3E%3C/svg%3E");
}

/* Top wave */
.torn-top {
  position: relative;
}

.torn-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 5;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23FDF6EE' d='M0,35 C80,10 160,68 280,42 C400,16 460,74 580,46 C700,18 760,78 900,50 C1040,22 1100,72 1240,44 C1340,24 1400,62 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}



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

.hero-bg-parallax {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 88, 10, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 62, 0, 0.2) 0%, transparent 50%),
              var(--dark-brown);
  will-change: transform;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange-primary);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
}

.hero-text-wrap {
  animation: heroSlideIn 1s ease forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 88, 10, 0.15);
  border: 1px solid rgba(232, 88, 10, 0.4);
  color: var(--orange-glow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hero-title .accent {
  color: var(--orange-primary);
  display: block;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--orange-primary);
  color: transparent;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: var(--white);
  padding: 18px 40px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(232, 88, 10, 0.45);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(232, 88, 10, 0.6);
  background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
}

.btn-secondary {
  color: var(--white);
  padding: 18px 40px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--orange-primary);
  color: var(--orange-glow);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange-primary);
  letter-spacing: 2px;
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroVisualIn 1.2s ease forwards;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(60px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-bowl-container {
  position: relative;
  width: 500px;
  height: 500px;
}

.hero-bowl-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(232, 88, 10, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-bowl-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  filter: drop-shadow(0 20px 60px rgba(232, 88, 10, 0.4));
  animation: bowlFloat 4s ease-in-out infinite;
}

@keyframes bowlFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.floating-ingredient {
  position: absolute;
  font-size: 2.5rem;
  animation: ingredientFloat linear infinite;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

@keyframes ingredientFloat {
  0% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(5px) rotate(240deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 120px 60px;
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange-primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 550px;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--cream);
  padding: 100px 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 35px;
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 88, 10, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-glow));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-warm);
  border-color: rgba(232, 88, 10, 0.25);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== MENU HIGHLIGHT ===== */
.menu-section {
  background: var(--dark-brown);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.menu-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232, 88, 10, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232, 88, 10, 0.06) 0%, transparent 40%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 70px;
}

.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232, 88, 10, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 88, 10, 0.5);
  box-shadow: 0 20px 60px rgba(232, 88, 10, 0.2);
}

.menu-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: rgba(232, 88, 10, 0.05);
  position: relative;
  overflow: hidden;
}

.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 10, 0, 0.5));
}

.menu-card-body {
  padding: 25px;
}

.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 8px;
}

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange-primary);
  letter-spacing: 2px;
}

.menu-add-btn {
  width: 42px;
  height: 42px;
  background: var(--orange-primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-add-btn:hover {
  background: var(--orange-light);
  transform: scale(1.1) rotate(90deg);
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-divider {
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider-bg {
  position: absolute;
  inset: -30%;
  background: var(--orange-primary);
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(255,150,80,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(184, 62, 0, 0.4) 0%, transparent 40%);
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-quote {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 60px;
}

.parallax-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.parallax-quote-author {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--cream);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-big-bowl {
  font-size: 14rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 20px 60px rgba(232, 88, 10, 0.3));
  animation: bowlFloat 5s ease-in-out infinite;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--orange-primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(232, 88, 10, 0.4);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  display: block;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 88, 10, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.about-feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
  padding: 120px 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 35px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}

.testimonial-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--orange-primary);
  opacity: 0.3;
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-stars {
  color: var(--orange-primary);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-brown);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 88, 10, 0.2) 0%, transparent 70%);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
  letter-spacing: 5px;
  margin-bottom: 20px;
  line-height: 0.95;
}

.cta-title span {
  color: var(--orange-primary);
  display: block;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #0D0500;
  padding: 80px 60px 40px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.footer-brand-name span { color: var(--orange-primary); }

.footer-desc {
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 88, 10, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 25px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-glow);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.88rem;
}

.footer-contact-icon {
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--orange-primary);
  text-decoration: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  min-height: 50vh;
  background: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 88, 10, 0.25) 0%, transparent 60%);
  will-change: transform;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  letter-spacing: 6px;
  position: relative;
  z-index: 5;
}

.page-hero-title span { color: var(--orange-primary); }

.page-hero-breadcrumb {
  position: relative;
  z-index: 5;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.page-hero-breadcrumb a {
  color: var(--orange-primary);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) and (max-width: 1200px) {
  .navbar { padding: 16px clamp(20px, 3.5vw, 40px); }
  .navbar.scrolled { padding: 12px clamp(20px, 3.5vw, 36px); }
}

/* Hamburger below large desktop — tablet & phone */
@media (max-width: 1199px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 767px) {
  .navbar { padding: 15px 30px; }
  .navbar.scrolled { padding: 12px 30px; }
  .section { padding: 80px 30px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 4rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

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

/* ===== LOADING SCREEN ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .ld-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 22px);
  flex-wrap: wrap;
  font-family: var(--font-display);
}
.page-loader .nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.page-loader .nav-logo-img {
  display: block;
  height: clamp(48px, 10vw, 68px);
  max-height: 68px;
  max-width: min(240px, 40vw);
  width: auto;
  object-fit: contain;
  object-position: center left;
}
.page-loader .nav-logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 4.5vw, 3rem);
}
.page-loader .logo-line {
  display: block;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.page-loader .logo-ramen {
  color: var(--white);
  font-size: 1.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.page-loader .logo-downtown {
  color: var(--orange-glow);
  font-size: 1.05em;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(232, 88, 10, 0.42);
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 6px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-primary), var(--orange-glow));
  border-radius: 2px;
  animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderFill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark-brown);
  z-index: 9999;
  padding: 80px 40px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--orange-primary); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ===== MENU PAGE ===== */
.menu-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid rgba(232, 88, 10, 0.3);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: var(--white);
}

.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(26, 10, 0, 0.08);
}

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

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(232, 88, 10, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--orange-primary);
  background: var(--white);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-card {
  background: var(--dark-brown);
  border-radius: 24px;
  padding: 50px;
  color: var(--white);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 88, 10, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 6px;
}

.contact-info-detail {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.hours-table td:first-child {
  color: rgba(255,255,255,0.6);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--orange-glow);
  font-weight: 600;
}

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

/* ===== SPICE LEVEL ===== */
.spice-level {
  display: flex;
  gap: 4px;
  margin-top: 5px;
}

.spice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 88, 10, 0.2);
}

.spice-dot.active { background: var(--orange-primary); }

/* ===== RESERVATION PAGE ===== */
.reservation-section {
  padding: 80px 60px;
  background: var(--cream);
}

.reservation-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 80px rgba(26, 10, 0, 0.08);
}

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .reservation-form { padding: 30px; }
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E8580A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 10rem; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 88, 10, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover { transform: scale(0.98); }
.gallery-item:hover::after { background: rgba(232, 88, 10, 0.2); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}