/* ============================================================
   WAROENG RAMEN & FOOD PURBALINGGA — style.css
   Palette: Maroon #7B0D0D | Red #C0392B | Bright Red #E74C3C
            Charcoal #1A1A1A | Off-White/Cream #FAF3E7
   Fonts: Kaisei Decol (display), Noto Serif JP (heading),
          Sawarabi Mincho (japanese), M PLUS Rounded 1c (body)
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --maroon: #7b0d0d;
  --maroon-deep: #5a0808;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --charcoal: #1a1a1a;
  --charcoal-2: #2c2c2c;
  --cream: #faf3e7;
  --cream-2: #f2e8d5;
  --cream-3: #ead9be;
  --gold: #c8960c;
  --gold-light: #f0c040;
  --white: #ffffff;

  --font-display: "Kaisei Decol", "Noto Serif JP", serif;
  --font-body: "M PLUS Rounded 1c", "Noto Serif JP", sans-serif;
  --font-jp: "Sawarabi Mincho", "Noto Serif JP", serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(123, 13, 13, 0.1);
  --shadow-md: 0 8px 32px rgba(123, 13, 13, 0.18);
  --shadow-lg: 0 20px 60px rgba(123, 13, 13, 0.25);
  --shadow-glow: 0 0 40px rgba(192, 57, 43, 0.35);

  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Global Seigaiha SVG BG (body level) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(123,13,13,0.055)' stroke-width='1.2'/%3E%3Ccircle cx='30' cy='30' r='18' fill='none' stroke='rgba(123,13,13,0.04)' stroke-width='0.9'/%3E%3Ccircle cx='0' cy='30' r='28' fill='none' stroke='rgba(123,13,13,0.055)' stroke-width='1.2'/%3E%3Ccircle cx='60' cy='30' r='28' fill='none' stroke='rgba(123,13,13,0.055)' stroke-width='1.2'/%3E%3Ccircle cx='30' cy='0' r='28' fill='none' stroke='rgba(123,13,13,0.04)' stroke-width='1'/%3E%3Ccircle cx='30' cy='60' r='28' fill='none' stroke='rgba(123,13,13,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 99px;
}

/* ---- BUTTONS ---- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
}
.btn-cta:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--maroon);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 2px solid var(--maroon);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(250, 243, 231, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(123, 13, 13, 0.08);
  transition:
    box-shadow var(--transition),
    background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(123, 13, 13, 0.12);
  background: rgba(250, 243, 231, 0.97);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  box-shadow: 0 2px 10px rgba(192, 57, 43, 0.25);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-2);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.nav-item:hover,
.nav-item.active {
  color: var(--red);
  background: rgba(192, 57, 43, 0.07);
}

.nav-cta {
  font-size: 0.85rem;
  padding: 10px 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--cream);
  z-index: 2000;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  border-left: 3px solid var(--red);
}
.mobile-drawer.open {
  right: 0;
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--maroon);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-display);
}
.drawer-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 13, 13, 0.08);
  transition: color var(--transition);
}
.drawer-link:hover {
  color: var(--red);
}
.drawer-cta {
  margin-top: 24px;
  justify-content: center;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.drawer-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--cream-2) 60%,
    #e8d5c0 100%
  );
}

/* Seigaiha internal overlay for hero */
.seigaiha-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(123,13,13,0.07)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='40' r='26' fill='none' stroke='rgba(123,13,13,0.05)' stroke-width='1'/%3E%3Ccircle cx='0' cy='40' r='38' fill='none' stroke='rgba(123,13,13,0.07)' stroke-width='1.5'/%3E%3Ccircle cx='80' cy='40' r='38' fill='none' stroke='rgba(123,13,13,0.07)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='0' r='38' fill='none' stroke='rgba(123,13,13,0.05)' stroke-width='1.2'/%3E%3Ccircle cx='40' cy='80' r='38' fill='none' stroke='rgba(123,13,13,0.05)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.7;
}

/* Floating Kanji */
.kanji-float {
  position: absolute;
  font-family: var(--font-jp);
  font-size: 6rem;
  color: rgba(123, 13, 13, 0.04);
  pointer-events: none;
  user-select: none;
  animation: kanjiFloat 12s ease-in-out infinite;
}
.kf1 {
  top: 15%;
  left: -2%;
  font-size: 8rem;
  animation-delay: 0s;
}
.kf2 {
  top: 50%;
  right: 2%;
  font-size: 12rem;
  animation-delay: -4s;
}
.kf3 {
  bottom: 20%;
  left: 8%;
  font-size: 5rem;
  animation-delay: -8s;
}

@keyframes kanjiFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - var(--nav-h) - 80px);
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.1);
  border: 1.5px solid rgba(192, 57, 43, 0.25);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--maroon);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline .brush-line {
  display: block;
}
.hero-headline .accent {
  color: var(--red);
  position: relative;
}
.hero-headline .accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold-light));
  border-radius: 2px;
}

.hero-desc {
  font-size: 1rem;
  color: #555;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-btn-primary {
  font-size: 1rem;
  padding: 14px 32px;
}
.hero-btn-sec {
  font-size: 0.95rem;
  padding: 14px 28px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--maroon);
}
.stat span {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(123, 13, 13, 0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bowl-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(192, 57, 43, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: bowlPulse 4s ease-in-out infinite;
}
@keyframes bowlPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
.ramen-svg {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 50px rgba(123, 13, 13, 0.3));
  animation: bowlFloat 6s ease-in-out infinite;
}
@keyframes bowlFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Steam animation */
.steam {
  animation: steamRise 3s ease-in-out infinite;
}
.s1 {
  animation-delay: 0s;
}
.s2 {
  animation-delay: 0.8s;
}
.s3 {
  animation-delay: 1.6s;
}
.s4 {
  animation-delay: 0.4s;
}
@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  30% {
    opacity: 0.6;
  }
  60% {
    opacity: 0.4;
    transform: translateY(-20px) scaleX(1.3);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scaleX(0.8);
  }
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  border: 1.5px solid rgba(192, 57, 43, 0.12);
  animation: badgeFloat 5s ease-in-out infinite;
}
.fb-icon {
  font-size: 1.2rem;
}
.fb1 {
  top: 12%;
  left: -4%;
  animation-delay: 0s;
}
.fb2 {
  bottom: 22%;
  right: -4%;
  animation-delay: -2.5s;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hero Ticker */
.hero-ticker {
  width: 100%;
  background: var(--maroon);
  padding: 14px 0;
  overflow: hidden;
  margin-top: 40px;
}
.ticker-inner {
  display: flex;
  gap: 30px;
  align-items: center;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-family: var(--font-jp);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.ticker-inner span {
  flex-shrink: 0;
}
.t-dot {
  color: var(--gold-light);
  font-size: 0.8rem;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light .section-title {
  color: var(--cream);
}
.section-header.light .section-sub {
  color: rgba(250, 243, 231, 0.7);
}

.sh-kana {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.8;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--maroon);
  margin-bottom: 12px;
}
.section-title .accent {
  color: var(--red);
}
.section-sub {
  font-size: 0.97rem;
  color: #777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 100px 0 80px;
  background: var(--cream);
}

.menu-boxes {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

/* Each menu box */
.menu-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1.5px solid rgba(123, 13, 13, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--maroon),
    var(--red),
    var(--red-bright)
  );
}
.menu-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.box-label {
}
.box-label-kana {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.box-label h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--maroon);
  margin-bottom: 6px;
}
.box-label p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* ---- SLIDER ---- */
.box-visual-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}

/* Food slider */
#foodSliderWrap .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slider-img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← FULL IMAGE VISIBLE, NO CROP */
  background: var(--cream-2);
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.2s;
}
.slider-img:hover {
  opacity: 0.92;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(123, 13, 13, 0.82);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background var(--transition),
    transform var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.slider-arrow:hover {
  background: var(--maroon-deep);
  transform: translateY(-50%) scale(1.08);
}
.arr-left {
  left: 10px;
}
.arr-right {
  right: 10px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid rgba(123, 13, 13, 0.4);
}
.slider-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}

/* Static drink image */
.static-wrap {
  cursor: zoom-in;
}
.static-menu-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← FULL IMAGE VISIBLE, NO CROP */
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}
.static-menu-img:hover {
  transform: scale(1.02);
}

/* CTA in box */
.box-cta {
  justify-content: center;
  background: #25d366;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
}
.box-cta:hover {
  background: #1ea555;
}

/* ---- DELIVERY BUTTONS ---- */
.delivery-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.delivery-label {
  font-size: 0.88rem;
  color: #888;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.delivery-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.delivery-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border: 1.5px solid rgba(123, 13, 13, 0.12);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.delivery-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gofood:hover {
  border-color: #e52629;
  color: #e52629;
}
.grabfood:hover {
  border-color: #00b14f;
  color: #00b14f;
}
.shopeefood:hover {
  border-color: #ff5722;
  color: #ff5722;
}

/* ============================================================
   LOKASI SECTION
   ============================================================ */
.lokasi-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.seigaiha-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3Ccircle cx='80' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='0' r='38' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3Ccircle cx='40' cy='80' r='38' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 1;
}

.lokasi-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Info cards */
.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: background var(--transition);
}
.info-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(250, 243, 231, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.88rem;
  color: rgba(250, 243, 231, 0.85);
  line-height: 1.6;
}
.info-card a {
  font-size: 0.9rem;
  color: var(--red-bright);
  font-weight: 600;
  transition: color var(--transition);
}
.info-card a:hover {
  color: var(--gold-light);
}

.lokasi-cta {
  margin-top: 8px;
  justify-content: center;
}

/* Map */
.lokasi-map {
}
.map-frame {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(192, 57, 43, 0.25);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}
.map-frame iframe {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--maroon-deep);
  padding: 40px 0;
  border-top: 3px solid var(--red);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
}
.footer-brand span {
  font-size: 0.75rem;
  color: rgba(250, 243, 231, 0.5);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 243, 231, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--cream);
}
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-copy span {
  font-size: 0.75rem;
  color: rgba(250, 243, 231, 0.45);
}
.footer-kana {
  font-family: var(--font-jp);
  font-size: 0.85rem !important;
  color: rgba(250, 243, 231, 0.25) !important;
  letter-spacing: 0.1em;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 0, 0, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.lightbox-overlay.active .lightbox-container {
  transform: scale(1);
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(192, 57, 43, 0.3);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: -6px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  transition:
    background var(--transition),
    transform var(--transition);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
}
.lightbox-close:hover {
  background: var(--maroon);
  transform: rotate(90deg) scale(1.1);
}
.lightbox-caption {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 40px;
  }
  .hero-text {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }

  .ramen-svg {
    max-width: 380px;
  }
  .bowl-glow {
    width: 300px;
    height: 300px;
  }
  .fb1 {
    top: 5%;
    left: 0%;
  }
  .fb2 {
    bottom: 5%;
    right: 0%;
  }

  .lokasi-grid {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 340px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 62px;
  }

  .nav-inner {
    padding: 0 20px;
  }
  .nav-brand {
    display: none;
  }

  /* Hero */
  .hero-inner {
    padding: 20px 20px 0;
    gap: 24px;
  }
  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-btn-primary,
  .hero-btn-sec {
    padding: 12px 22px;
    font-size: 0.88rem;
  }
  .ramen-svg {
    max-width: 280px;
  }

  .kanji-float {
    display: none;
  }
  .float-badge {
    display: none;
  }

  /* Menu boxes — stack vertically */
  .menu-boxes {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
  }
  .menu-box {
    padding: 22px;
  }

  /* Box visual height on mobile */
  .box-visual-wrap {
    height: 380px;
  }

  /* Delivery */
  .delivery-section {
    padding: 0 20px;
  }
  .delivery-buttons {
    gap: 10px;
  }
  .delivery-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  /* Lokasi */
  .lokasi-inner {
    padding: 0 20px;
  }
  .lokasi-grid {
    gap: 28px;
  }
  .map-frame {
    height: 280px;
    width: 100%;
    border-radius: var(--radius-md);
  }
  /* Map edge-to-edge on mobile */
  .lokasi-map {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .map-frame {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 18px;
  }
  .footer-copy {
    align-items: center;
  }

  /* Section headers */
  .menu-section {
    padding: 70px 0 60px;
  }
  .lokasi-section {
    padding: 70px 0;
  }
  .section-header {
    margin-bottom: 36px;
    padding: 0 20px;
  }

  /* Lightbox on mobile */
  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
  }
  .lightbox-close {
    top: -44px;
    right: 0;
  }

  /* Slider arrows */
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .box-visual-wrap {
    height: 300px;
  }
  .delivery-btn span {
    font-size: 0.78rem;
  }
}
