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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', 'Montserrat', sans-serif;
  background-color: #0B132B;
  color: #f5f5f0;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #f5f5f0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(245, 245, 240, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 0 auto 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #b8962f);
  color: #0B132B;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0c04a, #D4AF37);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #D4AF37;
  border: 1.5px solid #D4AF37;
}

.btn-outline:hover {
  background: #D4AF37;
  color: #0B132B;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.25);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.btn-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 19, 43, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 2px;
  position: relative;
}

.nav-logo span {
  font-weight: 400;
  color: #f5f5f0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245, 245, 240, 0.8);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: #D4AF37;
}

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

.nav-link.active {
  color: #D4AF37;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #D4AF37;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0B132B 0%, #1a2340 50%, #0B132B 100%);
  overflow: hidden;
}

/* Japanese pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 175, 55, 0.01) 40px, rgba(212, 175, 55, 0.01) 41px);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.02) rotate(0.5deg); opacity: 0.8; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #0B132B, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
  background: rgba(212, 175, 55, 0.05);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f5f5f0;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s forwards;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: #D4AF37;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 245, 240, 0.7);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 240, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease 1.2s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #D4AF37, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== RATING BADGE ON HERO ===== */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.0s forwards;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
}

.hero-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: #D4AF37;
}

.hero-rating-text {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.6);
  letter-spacing: 0.5px;
}

.hero-rating-text strong {
  color: #D4AF37;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
  background: #0e1733;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 450px;
  background: linear-gradient(145deg, #1a2340, #0B132B);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.03), transparent, rgba(212, 175, 55, 0.03), transparent);
  animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(2px);
}

.about-image-placeholder svg {
  width: 70px;
  height: 70px;
  fill: currentColor;
  opacity: 0.6;
}

.about-image-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.2);
  letter-spacing: 3px;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.4), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #D4AF37;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-text p {
  color: rgba(245, 245, 240, 0.75);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text .highlight-text {
  color: #D4AF37;
  font-weight: 600;
}

/* ===== MENU SECTION (TABS + FULL MENU) ===== */
.menu {
  background: #0B132B;
}

/* Tab Navigation */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245, 245, 240, 0.6);
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.menu-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-tab:hover::before {
  left: 100%;
}

.menu-tab:hover {
  color: #D4AF37;
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.menu-tab.active {
  color: #0B132B;
  background: linear-gradient(135deg, #D4AF37, #b8962f);
  border-color: #D4AF37;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.menu-tab.active:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 35px rgba(212, 175, 55, 0.45);
}

/* Menu Category Panels */
.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Menu Grid for Full Menu Items */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: linear-gradient(145deg, #0e1733, #121d3d);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #D4AF37;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0 2px 2px 0;
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(6px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #f5f5f0;
  margin-bottom: 4px;
}

.menu-item-variant {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.5);
  font-weight: 300;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #D4AF37;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 16px;
}

/* Category Sub-Heading */
.menu-subcategory {
  grid-column: 1 / -1;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #D4AF37;
  margin: 24px 0 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  letter-spacing: 1px;
}

.menu-subcategory:first-of-type {
  margin-top: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  background: #0e1733;
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: linear-gradient(145deg, #121d3d, #0e1733);
  border-radius: 14px;
  padding: 36px 30px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #D4AF37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.2));
}

.review-text {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.75);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #D4AF37;
  font-weight: 600;
}

.review-role {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.4);
  font-style: normal;
  font-family: 'Lato', sans-serif;
  display: block;
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.contact {
  background: #0B132B;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #D4AF37;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 4px 0;
}

.contact-detail svg {
  width: 22px;
  height: 22px;
  fill: #D4AF37;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.8;
}

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

.contact-detail .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4AF37;
  margin-bottom: 4px;
  display: block;
  opacity: 0.8;
}

.contact-wa-group {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(145deg, #1a2340, #0B132B);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
  text-align: center;
  color: rgba(212, 175, 55, 0.2);
  padding: 40px;
}

.map-placeholder svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
  margin-bottom: 16px;
  opacity: 0.6;
}

.map-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(212, 175, 55, 0.15);
  letter-spacing: 1px;
}

/* ===== MAP PREVIEW (Clickable Image) ===== */
.map-preview-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.map-preview-link:hover {
  transform: scale(1.02);
}

.map-preview-link:hover .map-pin svg {
  transform: scale(1.15);
  fill: #D4AF37;
}

.map-preview-link:hover .map-label-cta {
  color: #D4AF37;
}

.map-preview-content {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, #1a2340, #0B132B);
  padding: 40px;
}

/* Map grid lines */
.map-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

.map-grid-line {
  position: absolute;
  background: #D4AF37;
}

.map-grid-line.horizontal {
  left: 0;
  width: 100%;
  height: 1px;
}

.map-grid-line.vertical {
  top: 0;
  width: 1px;
  height: 100%;
}

/* Map pin */
.map-pin {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  animation: mapPinBounce 2s ease-in-out infinite;
}

.map-pin svg {
  width: 60px;
  height: 60px;
  fill: rgba(212, 175, 55, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

@keyframes mapPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Map label */
.map-label {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-label-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #D4AF37;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.map-label-sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 16px;
}

.map-label-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245, 245, 240, 0.4);
  padding: 8px 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.map-preview-link:hover .map-label-cta {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #b8962f);
  color: #0B132B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ===== FOOTER ===== */
.footer {
  background: #080e24;
  padding: 50px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #D4AF37;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.footer p {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .about-grid {
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Navbar */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(11, 19, 43, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    min-height: 280px;
  }

  .about-image-placeholder {
    min-height: 280px;
  }

  /* Menu */
  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

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

  .menu-item {
    padding: 16px 20px;
  }

  .menu-item-name {
    font-size: 0.9rem;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-map {
    min-height: 280px;
  }

  .btn-wa {
    width: 100%;
    justify-content: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 16px;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .menu-tab {
    padding: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .review-card {
    padding: 28px 22px;
  }
}