/* ==========================================================================
   SARVORAA INDONESIAN RESTAURANT - CORE STYLESHEET
   Aesthetic: Luxury Organic Indonesian Dining
   Colors: Forest Green, Cream Sand, Warm Terracotta, Golden Amber
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

/* --- CSS VARIABLES / DESIGN TOKENS --- */
:root {
  /* Palette */
  --color-forest: #172a1f;
  --color-forest-dark: #0e1b13;
  --color-forest-deep: #09120d;
  --color-forest-light: #233d2d;
  --color-forest-surface: #1c3325;

  --color-cream: #f6f1e8;
  --color-cream-light: #fbf8f2;
  --color-cream-card: #ffffff;
  --color-cream-dark: #eadfcf;
  --color-cream-muted: #d5c8b4;

  --color-terracotta: #b36534;
  --color-terracotta-hover: #9e5629;
  --color-terracotta-light: #f8efe9;

  --color-gold: #d4a359;
  --color-gold-light: #f5e8c7;
  --color-gold-dark: #9c7232;

  --color-text-dark: #1f2a22;
  --color-text-muted: #5c675e;
  --color-text-light: #f6f1e8;
  --color-text-light-muted: #a3b2a6;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Caveat", cursive, sans-serif;

  /* Elevations */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 35px rgba(212, 163, 89, 0.25);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.35);

  /* Borders & Radius */
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --radius-organic: 60% 40% 50% 50% / 50% 50% 50% 50%;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1280px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--color-terracotta) var(--color-cream-dark);
}

/* --- CUSTOM BROWSER SCROLLBAR (WARM TERRACOTTA BROWN) --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-terracotta);
  border-radius: 9999px;
  border: 2px solid var(--color-cream-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracotta-hover);
}

::-webkit-scrollbar-thumb:active {
  background: #874720;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.script-text {
  font-family: var(--font-script);
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-terracotta);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.section-tag.light {
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.18;
  margin-bottom: 1rem;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.section-desc.light {
  color: var(--color-text-light-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(179, 101, 52, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(179, 101, 52, 0.35);
}

.btn-primary .arrow-icon {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-outline {
  border: 1.5px solid rgba(246, 241, 232, 0.4);
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212, 163, 89, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1.5px solid var(--color-forest);
  color: var(--color-forest);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--color-forest);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR (Seamless Split Transparent Header)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 0;
  background: transparent;
  border-bottom: none;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(246, 241, 232, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(23, 42, 31, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

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

.brand-logo .logo-leaf {
  width: 34px;
  height: 34px;
  color: var(--color-forest);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-forest);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
  margin-right: 3.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e6dcbd;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-fast);
}

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

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

/* Scrolled header state for dark-theme text */
.site-header.scrolled .nav-link {
  color: var(--color-forest);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-terracotta);
}

.site-header.scrolled .nav-link.active::after {
  background-color: var(--color-terracotta);
}

/* Hide mobile reserve button on desktop */
.nav-links .mobile-reserve-btn {
  display: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(246, 241, 232, 0.45);
  font-size: 0.9rem;
  font-weight: 600;
  color: #f6f1e8;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-reserve:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .btn-reserve {
  border-color: var(--color-forest);
  color: var(--color-forest);
  background: transparent;
}

.site-header.scrolled .btn-reserve:hover {
  background: var(--color-forest);
  color: #ffffff;
}

/* Mobile Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-forest);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================================================
   01 — HERO / BANNER SECTION (High-Fidelity Mockup Match)
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 920px;
  padding: 0;
  background-color: var(--color-cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* SVG Organic Wave Background */
.hero-svg-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-svg-bg {
  width: 100%;
  height: 100%;
  min-height: 920px;
  object-fit: fill;
}

/* Floating Culinary Garnishes Matching Mockup 1 */
.floating-garnish {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.garnish-tomato-top {
  top: -18px;
  left: 35%;
  animation: floatSlow 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.garnish-tomato-sub {
  top: 85px;
  left: 41.5%;
  transform: rotate(22deg);
  animation: floatSlow 7s ease-in-out infinite alternate-reverse;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.garnish-basil-top {
  top: 175px;
  left: 51%;
  transform: rotate(-25deg);
  animation: floatSlow 5.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.16));
}

.garnish-basil-mid {
  top: 68%;
  left: 63%;
  transform: rotate(18deg);
  animation: floatSlow 6.5s ease-in-out infinite alternate;
  filter: drop-shadow(2px 8px 18px rgba(0, 0, 0, 0.18));
}

.garnish-peppercorns-cluster {
  top: 76%;
  left: 65%;
  display: flex;
  flex-wrap: wrap;
  width: 48px;
  gap: 3px;
}

.peppercorn {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 1.5px 2px 4px rgba(0, 0, 0, 0.35);
  margin: 2px;
}

.peppercorn.pc-black {
  background: radial-gradient(circle at 35% 35%, #4a3e39, #1c1512);
}

.peppercorn.pc-pink {
  background: radial-gradient(circle at 35% 35%, #c2635b, #6e2b25);
}

.p-lg {
  width: 7px;
  height: 7px;
}
.p-md {
  width: 5px;
  height: 5px;
}
.p-sm {
  width: 4px;
  height: 4px;
}
.p-xs {
  width: 3px;
  height: 3px;
}

.garnish-chili-right {
  top: 340px;
  right: 35px;
  transform: rotate(20deg);
  animation: floatSlow 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

@keyframes floatSlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  padding-top: 135px;
  padding-bottom: 30px;
  height: 100%;
  max-height: 100vh;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(440px, 480px) 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(440px, 480px) 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Hero Left Content */
.hero-content {
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-top: 10px;
  padding-bottom: 0;
  padding-right: 0;
}

.hero-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 163, 89, 0.16);
  border: 1px solid rgba(212, 163, 89, 0.45);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a5818;
}

.mini-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.08;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  hyphens: none;
  -webkit-hyphens: none;
  position: relative;
}

.title-doodle-wrap {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  filter: drop-shadow(0 2px 6px rgba(212, 163, 89, 0.4));
}

.title-leaf-doodle {
  display: block;
  transform: rotate(10deg);
  transition: transform 0.4s ease;
}

.hero-title:hover .title-leaf-doodle {
  transform: rotate(20deg) scale(1.1);
}

.hero-edge-foliage {
  position: absolute;
  top: 15%;
  left: 0;
  width: clamp(40px, 3.5vw, 65px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
  filter: drop-shadow(4px 10px 18px rgba(0, 0, 0, 0.12));
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.hero-edge-foliage img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-description {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.45rem;
  max-width: 460px;
  hyphens: none;
  -webkit-hyphens: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.55rem;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #c45d28 0%, #a24619 100%);
  color: #ffffff !important;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 220, 160, 0.4);
  box-shadow:
    0 10px 24px rgba(186, 85, 33, 0.38),
    0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #d36830 0%, #b25020 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(186, 85, 33, 0.48),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.btn-hero-cta:hover .btn-arrow-circle {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.35);
}

.hero-rating-badge {
  display: flex;
  flex-direction: column;
}

.rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.rating-text strong {
  color: var(--color-forest);
  font-weight: 700;
}

/* 3 Stat Badges — Elevated Glassmorphism Trust Bar */
.hero-stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 163, 89, 0.4);
  border-radius: 16px;
  padding: 12px 22px;
  box-shadow:
    0 10px 26px rgba(23, 42, 31, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.35rem;
  max-width: 480px;
  width: 100%;
}

.stat-col {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.stat-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(186, 85, 33, 0.09);
  border: 1px solid rgba(186, 85, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-terracotta);
}

.stat-icon {
  width: 17px;
  height: 17px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #706352;
  line-height: 1.2;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(212, 163, 89, 0.35);
}

/* Atmosphere Interior Showcase Card — Prominent & Luxurious */
.hero-interior-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 165px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(212, 163, 89, 0.22);
  border: 1.5px solid rgba(212, 163, 89, 0.55);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hero-interior-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(212, 163, 89, 0.38);
  border-color: #f7d58b;
}

.hero-interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.25) brightness(1.04) sepia(0.08);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-interior-card:hover .hero-interior-img {
  transform: scale(1.06);
}

.hero-interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 27, 19, 0.75) 0%,
    rgba(14, 27, 19, 0.2) 45%,
    rgba(14, 27, 19, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
}

.hero-interior-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-interior-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(23, 41, 29, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 163, 89, 0.55);
  border-radius: 20px;
  padding: 3px 11px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff4d6;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55c76e;
  box-shadow: 0 0 8px #55c76e;
  animation: dotPulseGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-interior-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff2d1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 163, 89, 0.45);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.hero-interior-card:hover .hero-interior-action {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
  transform: translateX(2px);
}

.hero-interior-body {
  display: flex;
  flex-direction: column;
}

.hero-interior-neon {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff8e8;
  text-shadow:
    0 0 8px #fff5d7,
    0 0 18px #ffd066,
    0 0 35px rgba(255, 170, 0, 0.75);
}

.hero-interior-sub {
  font-size: 0.76rem;
  color: #ede4d8;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-bottom-foliage,
.hero-docked-interior {
  display: none !important;
}

/* ==========================================================================
   CIRCULAR INTERACTIVE ORBIT SHOWCASE
   ========================================================================== */
.hero-orbit-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: auto;
  width: 100%;
}

/* Top Right Script Note */
.orbit-script-note {
  position: absolute;
  top: 65px;
  right: 28px;
  text-align: right;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.orbit-script-note p {
  font-family: var(--font-script);
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--color-gold);
  font-weight: 700;
}

.script-leaf-doodle {
  color: var(--color-gold);
  margin-top: 4px;
}

/* Orbit Stage (660px x 660px circular layout - Bold & Prominent Food) */
.orbit-stage {
  position: relative;
  width: 660px;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dotted Track Ring with Warm Gold Glow - Gentle rotational ambient motion */
.orbit-ring {
  position: absolute;
  top: 55px;
  left: 55px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 163, 89, 0.42);
  pointer-events: none;
  animation: orbitRingGlow 40s linear infinite;
}

@keyframes orbitRingGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Decorative Gold Planet Beads on Orbit Track */
.orbit-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 163, 89, 0.9);
  transform: translateY(-50%);
}

.orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 163, 89, 0.9);
  transform: translateY(-50%);
}

/* Center Active Dish (Organic Soft Ivory Droplet with Massive Food Focus) */
.orbit-center-dish {
  position: absolute;
  z-index: 5;
  top: 118px;
  left: 165px;
  width: 330px;
  background: #faf6ee;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 165px 165px 135px 135px / 185px 185px 155px 155px;
  padding: 1rem 1.25rem 1.75rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(212, 163, 89, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-smooth);
}

.orbit-center-plate-wrap {
  position: relative;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    0 0 0 3px rgba(255, 255, 255, 0.95);
  margin-bottom: 0.45rem;
  overflow: hidden;
}

.orbit-center-plate-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212, 163, 89, 0.55);
  animation: pulseHalo 3s ease-in-out infinite alternate;
  pointer-events: none;
}

.orbit-center-plate-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.3s ease;
}

.orbit-dish-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-terracotta);
  margin-top: 0.25rem;
  margin-bottom: 0.1rem;
}

.orbit-dish-title {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 0.1rem;
}

.orbit-dish-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin: 0.1rem 0 0.25rem;
}

.orbit-dish-desc {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  max-width: 260px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Continuous Circular Orbit Motion for Satellites */
.orbit-satellites-carrier {
  position: absolute;
  top: 0;
  left: 0;
  width: 660px;
  height: 660px;
  pointer-events: auto;
  transform-origin: 330px 330px;
  animation: orbitSpinMotion 38s linear infinite;
}

@keyframes orbitSpinMotion {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Satellite Dishes positioned along circumference (Center at 330, 330, R = 275) */
.orbit-satellite {
  position: absolute;
  width: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 6;
  transform-origin: center center;
  animation: orbitCounterSpin 38s linear infinite;
  transition: filter 0.3s ease;
}

@keyframes orbitCounterSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Pause spinning smoothly when user hovers over orbit stage or any dish */
.orbit-stage:hover .orbit-satellites-carrier,
.orbit-stage:hover .orbit-satellite {
  animation-play-state: paused;
}

.sat-img-box {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2.5px solid rgba(246, 241, 232, 0.55);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  background: var(--color-forest-dark);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: dishPulseFloat 4s ease-in-out infinite alternate;
}

@keyframes dishPulseFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

.sat-1 .sat-img-box {
  animation-delay: 0s;
}
.sat-2 .sat-img-box {
  animation-delay: 0.6s;
}
.sat-3 .sat-img-box {
  animation-delay: 1.2s;
}
.sat-4 .sat-img-box {
  animation-delay: 1.8s;
}
.sat-5 .sat-img-box {
  animation-delay: 2.4s;
}
.sat-6 .sat-img-box {
  animation-delay: 3s;
}

.sat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #eadfcf;
  text-align: center;
  line-height: 1.18;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
  pointer-events: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

/* Clockwise 6 points around (330, 330, R = 275) - Generous, airy spacing */
/* 1: Top (12 o'clock) */
.sat-1 {
  top: 5px;
  left: 272px;
}
.sat-1 .sat-label {
  margin-bottom: 4px;
}

/* 2: Top-Right (2 o'clock) */
.sat-2 {
  top: 130px;
  left: 510px;
}
.sat-2 .sat-label {
  margin-bottom: 4px;
}

/* 3: Bottom-Right (4 o'clock) */
.sat-3 {
  top: 423px;
  left: 510px;
}
.sat-3 .sat-label {
  margin-top: 4px;
}

/* 4: Bottom (6 o'clock) */
.sat-4 {
  top: 561px;
  left: 272px;
}
.sat-4 .sat-label {
  margin-top: 4px;
}

/* 5: Bottom-Left (8 o'clock) */
.sat-5 {
  top: 423px;
  left: 34px;
}
.sat-5 .sat-label {
  margin-top: 4px;
}

/* 6: Top-Left (10 o'clock) */
.sat-6 {
  top: 130px;
  left: 34px;
}
.sat-6 .sat-label {
  margin-bottom: 4px;
}

/* Satellite Hover & Active Aura */
.orbit-satellite:hover .sat-img-box {
  border-color: var(--color-gold);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(212, 163, 89, 0.7);
}

.orbit-satellite.active .sat-img-box {
  border-color: var(--color-gold);
  transform: scale(1.12);
  box-shadow:
    0 0 0 3px rgba(212, 163, 89, 0.45),
    0 0 32px rgba(212, 163, 89, 0.85),
    0 0 12px rgba(255, 220, 120, 0.7);
}

.orbit-satellite.active .sat-label {
  color: #fff2d1;
  font-weight: 700;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 0 12px rgba(212, 163, 89, 0.7);
}

/* Nav Buttons on Orbit Equator */
.orbit-nav-btn {
  position: absolute;
  top: 308px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
  transition: all var(--transition-fast);
}

.orbit-nav-btn:hover {
  background: var(--color-gold);
  color: #ffffff;
  transform: scale(1.1);
}

.orbit-prev {
  left: 112px;
}
.orbit-next {
  right: 112px;
}

/* Bottom-Right Corner Torn Parchment Paper (Docked to section bottom-right) */
.corner-parchment {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
  height: 165px;
  background: #f0e7d6;
  clip-path: polygon(
    100% 0%,
    86% 7%,
    72% 3%,
    58% 13%,
    44% 19%,
    30% 32%,
    20% 48%,
    10% 67%,
    3% 84%,
    0% 100%,
    100% 100%
  );
  box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 32px 24px 0;
  z-index: 4;
  pointer-events: none;
}

.parchment-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: #554432;
  line-height: 1.15;
  font-weight: 700;
  text-align: right;
}

.parchment-leaf {
  color: #554432;
  margin-top: 4px;
}

/* Scroll down indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  z-index: 5;
}

.hero-scroll-indicator svg {
  width: 18px;
  height: 24px;
  animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ==========================================================================
   02 — ABOUT US SECTION
   ========================================================================== */
.about-section {
  position: relative;
  padding: 110px 0 100px;
  background-color: var(--color-cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text {
  max-width: 520px;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* Organic Image Collage */
.about-visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-chef-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

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

.about-chef-frame:hover img {
  transform: scale(1.05);
}

.about-interior-frame {
  position: absolute;
  bottom: -45px;
  right: -20px;
  width: 250px;
  height: 200px;
  border-radius: 35% 55% 50% 40% / 50% 40% 60% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  z-index: 2;
}

.about-interior-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote-box {
  position: absolute;
  top: -25px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 230px;
  z-index: 3;
  border-left: 3px solid var(--color-terracotta);
}

.about-quote-box p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.45;
}

.about-quote-box span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-top: 0.4rem;
}

.about-script-accent {
  position: absolute;
  bottom: -15px;
  left: 20px;
  z-index: 3;
}

/* About Value Cards Ribbon on Green Wave */
.about-wave-banner {
  background-color: var(--color-forest);
  border-radius: 40px 120px 40px 120px;
  padding: 3.5rem 3rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-wave-banner::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(212, 163, 89, 0.06);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.about-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(246, 241, 232, 0.15);
}

.about-value-item:last-child {
  border-right: none;
  padding-right: 0;
}

.about-value-icon {
  width: 34px;
  height: 34px;
  color: var(--color-gold);
}

.about-value-item h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
}

.about-value-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-top: -0.25rem;
}

.about-value-item p {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   03 — SIGNATURE MENU SPOTLIGHT CAROUSEL
   ========================================================================== */
.signature-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-forest);
  color: var(--color-text-light);
  overflow: hidden;
}

.signature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(35, 61, 45, 0.7) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.signature-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Spotlight Carousel */
.signature-carousel-wrapper {
  position: relative;
  margin-bottom: 4rem;
  z-index: 2;
}

.signature-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-height: 480px;
}

.sig-card {
  transition: all var(--transition-smooth);
  text-align: center;
  cursor: pointer;
}

/* Side cards */
.sig-card.side {
  width: 260px;
  opacity: 0.65;
  transform: scale(0.85);
}

.sig-card.side:hover {
  opacity: 0.9;
  transform: scale(0.9);
}

.sig-card.side .sig-img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sig-card.side .sig-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sig-card.side h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text-light);
  margin-bottom: 0.35rem;
}

.sig-card.side p {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.sig-card.side .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* Center Active Card */
.sig-card.active {
  width: 440px;
  transform: scale(1.05);
  opacity: 1;
  background: rgba(246, 241, 232, 0.04);
  backdrop-filter: blur(12px);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 163, 89, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.sig-card.active .fav-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--color-terracotta);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sig-card.active .sig-img-wrap {
  position: relative;
  width: 270px;
  height: 270px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.sig-card.active .sig-img-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 163, 89, 0.5);
  animation: rotateSlow 25s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sig-card.active .sig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.sig-card.active h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.45rem;
}

.sig-card.active p {
  font-size: 0.95rem;
  color: var(--color-text-light-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.sig-card.active .price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

/* Carousel Bottom Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.carousel-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.carousel-dot {
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.carousel-dot.active {
  color: var(--color-gold);
}

/* Bottom Quality Badges */
.signature-badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.sig-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sig-badge-item svg {
  width: 26px;
  height: 26px;
  color: var(--color-gold);
}

.sig-badge-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* ==========================================================================
   04 — EXPLORE OUR MENU SECTION
   ========================================================================== */
.menu-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-cream);
}

.menu-header-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.menu-stamp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  background: var(--color-cream-dark);
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  border: 1.5px dashed var(--color-terracotta);
  box-shadow: 0 4px 15px rgba(179, 101, 52, 0.08);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.menu-stamp-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.menu-stamp-badge p {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-forest);
}

/* Filter Navigation Tabs */
.menu-tabs {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 3.5rem;
  scrollbar-width: none !important;
}

.menu-tabs::-webkit-scrollbar {
  display: none !important;
}

/* Tabs Scroll Indicator Bar */
.menu-tabs-scroll-track {
  display: none;
  width: clamp(80px, 24vw, 110px);
  height: 5px;
  background: rgba(179, 101, 52, 0.18);
  border-radius: var(--radius-full);
  margin: -2.2rem auto 3.2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  touch-action: none;
}

.menu-tabs-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 36px;
  background: var(--color-terracotta);
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(179, 101, 52, 0.35);
  will-change: transform;
  transition: transform 0.05s linear;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--color-text-dark);
  border: 1px solid rgba(23, 42, 31, 0.08);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab-btn svg {
  width: 18px;
  height: 18px;
}

.tab-btn:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--color-terracotta);
  color: #ffffff;
  border-color: var(--color-terracotta);
  box-shadow: 0 8px 20px rgba(179, 101, 52, 0.25);
}

/* Category Groups */
.menu-category-group {
  margin-bottom: 4.5rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cat-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(23, 42, 31, 0.1);
  padding-bottom: 1rem;
}

.cat-group-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-forest);
}

.cat-group-title .cat-group-heading {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
}

.cat-group-title span.cat-group-sub,
.cat-group-title > span:not(.cat-group-heading) {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 1rem;
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 42, 31, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(179, 101, 52, 0.2);
}

.menu-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 20px 20px 30px 20px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: var(--color-forest-dark);
}

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

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

/* Wishlist Heart Button */
.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.btn-wishlist:hover,
.btn-wishlist.active {
  background: #ffffff;
  color: #e63946;
}

.btn-wishlist.active svg {
  fill: #e63946;
}

.menu-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.3;
}

.menu-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-terracotta);
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(23, 42, 31, 0.06);
  padding-top: 0.85rem;
}

.btn-order-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 42, 31, 0.1);
  margin-left: auto;
  transition: all var(--transition-fast);
}

.menu-card:hover .btn-order-icon {
  background: var(--color-terracotta);
  color: #ffffff;
  border-color: var(--color-terracotta);
  transform: rotate(-45deg);
}

/* ==========================================================================
   05 — WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-cream-light);
  overflow: hidden;
}

.why-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.why-content {
  max-width: 520px;
}

.why-visual-collage {
  position: relative;
}

.why-organic-main {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 65% 35% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.why-organic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-quote-card {
  position: absolute;
  bottom: -35px;
  right: -20px;
  background: var(--color-forest);
  color: var(--color-text-light);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  max-width: 280px;
  border: 1px solid rgba(212, 163, 89, 0.3);
}

.why-quote-card p {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
}

.why-quote-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 0.5rem;
}

/* 4 Feature Circles */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.why-feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-circle-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
}

.why-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #ffffff;
  position: relative;
  z-index: 1;
}

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

.why-feature-card:hover .why-circle-img img {
  transform: scale(1.12);
}

.why-icon-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  border: 3px solid #ffffff;
  z-index: 10;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-feature-card:hover .why-icon-badge {
  transform: scale(1.08);
  background: var(--color-terracotta-hover);
}

.why-feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.why-feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Bottom Banner: Good Food Creates Brighter People */
.why-bottom-banner {
  background-color: var(--color-forest);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.banner-quote-content {
  padding: 3.5rem 3rem;
  position: relative;
}

.banner-quote-content .quote-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.4;
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
}

.banner-quote-content h3 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--color-text-light);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.banner-quote-content p {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 600;
}

.banner-photo {
  height: 100%;
  min-height: 280px;
}

.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   06 — GALLERY SECTION
   ========================================================================== */
.gallery-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-cream);
}

.gallery-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.gal-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-forest);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 42, 31, 0.1);
  transition: all var(--transition-fast);
}

.gal-filter-btn:hover,
.gal-filter-btn.active {
  background: var(--color-forest);
  color: #ffffff;
  border-color: var(--color-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 27, 19, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 0.82rem;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

/* ==========================================================================
   07 — TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-forest);
  color: var(--color-text-light);
}

.testi-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-dark);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-fast);
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 163, 89, 0.4);
}

.testi-stars {
  display: flex;
  gap: 0.35rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.testi-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light-muted);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testi-author-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.2;
}

.testi-author-info p {
  font-size: 0.75rem;
  color: var(--color-gold);
}

/* ==========================================================================
   08 — VISIT US SECTION
   ========================================================================== */
.visit-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--color-cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

.visit-info-card {
  background: var(--color-cream-card);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(23, 42, 31, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.visit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-details h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.35rem;
}

.visit-details p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.visit-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-forest);
  background: var(--color-cream);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(23, 42, 31, 0.1);
  box-shadow: 0 2px 6px rgba(23, 42, 31, 0.03);
  transition: all var(--transition-fast);
}

.amenity-pill:hover {
  background: #ffffff;
  border-color: rgba(179, 101, 52, 0.3);
  color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(179, 101, 52, 0.12);
}

.amenity-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-terracotta);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.amenity-pill:hover svg {
  transform: scale(1.12);
}

/* Map frame */
.visit-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 450px;
  border: 4px solid #ffffff;
}

.visit-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* ==========================================================================
   09 — BIG CTA SECTION ("Good Food. Brighter Days.")
   ========================================================================== */
.big-cta-section {
  position: relative;
  padding: 130px 0;
  background-color: var(--color-forest);
  overflow: hidden;
  text-align: center;
}

.cta-wave-ornament {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(35, 61, 45, 0.8) 0%,
    rgba(14, 27, 19, 0.95) 100%
  );
  z-index: 1;
}

.big-cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.big-cta-tag {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.big-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.big-cta-desc {
  font-size: 1.15rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.big-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   10 — FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-forest-deep);
  color: var(--color-text-light);
  padding: 90px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-brand .brand-name {
  color: var(--color-text-light);
}

.footer-brand .brand-tagline {
  color: var(--color-gold);
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin: 1.25rem 0 1.75rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-terracotta);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-hours-list li {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-hours-list strong {
  display: block;
  color: var(--color-cream);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

/* ==========================================================================
   MODALS & FLOATING CONTROLS
   ========================================================================== */
/* Reservation Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 27, 19, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.reservation-modal {
  background: var(--color-cream);
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(212, 163, 89, 0.3);
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .reservation-modal {
  transform: translateY(0);
}

.btn-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23, 42, 31, 0.08);
  color: var(--color-forest);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-modal-close:hover {
  background: var(--color-terracotta);
  color: #ffffff;
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--color-forest);
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(23, 42, 31, 0.15);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text-dark);
  transition: border-color var(--transition-fast);
}

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 13, 0.94);
  backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--color-cream);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.btn-whatsapp-float {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
}

.btn-scroll-top {
  background: var(--color-terracotta);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 4px 16px rgba(179, 101, 52, 0.35);
}

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

.btn-scroll-top:hover {
  background: var(--color-terracotta-hover);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(179, 101, 52, 0.5);
}
