/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --color-forest: #1a2e1a;
  --color-emerald: #2d5a27;
  --color-sage: #4a7c45;
  --color-gold: #c9a84c;
  --color-gold-light: #e8c97a;
  --color-gold-pale: #f5e6b8;
  --color-cream: #faf7f0;
  --color-warm-white: #fff9f0;
  --color-charcoal: #1c1c1c;
  --color-muted: #6b6b6b;

  --font-display: "Cormorant Garamond", serif;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Jost", sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;

  --shadow-gold: 0 4px 32px rgba(201, 168, 76, 0.18);
  --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-deep: 0 16px 64px rgba(0, 0, 0, 0.22);

  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-cream);
  color: var(--color-charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--left.revealed,
.reveal--right.revealed {
  transform: translateX(0);
}

.reveal--delay-1 {
  transition-delay: 0.12s;
}
.reveal--delay-2 {
  transition-delay: 0.24s;
}
.reveal--delay-3 {
  transition-delay: 0.36s;
}
.reveal--delay-4 {
  transition-delay: 0.48s;
}
.reveal--delay-5 {
  transition-delay: 0.6s;
}
.reveal--delay-6 {
  transition-delay: 0.72s;
}
.reveal--delay-7 {
  transition-delay: 0.84s;
}

/* ============================================
   DECORATIVE ELEMENTS
============================================ */
.gold-line {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.gold-line::before,
.gold-line::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.gold-line::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}
.navbar--scrolled {
  background: rgba(26, 46, 26, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 60px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold);
}
.navbar__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
  line-height: 1.1;
}
.navbar__wordmark span {
  display: block;
  font-size: 9px;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 201, 122, 0.7);
}

.navbar__nav {
  display: flex;
  gap: 36px;
  list-style: none;
}
.navbar__nav a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: color var(--transition-fast);
}
.navbar__nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}
.navbar__nav a:hover {
  color: var(--color-gold-light);
}
.navbar__nav a:hover::after {
  width: 100%;
}

.navbar__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  padding: 10px 24px;
  border-radius: 100px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-gold-light);
  transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(26, 46, 26, 0.78) 0%,
    rgba(10, 20, 10, 0.65) 50%,
    rgba(26, 46, 26, 0.88) 100%
  );
}

/* Grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
  max-width: 800px;
}

.hero__eyebrow {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero__logo-wrap {
  margin-bottom: 32px;
}
.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow:
    0 0 0 8px rgba(201, 168, 76, 0.12),
    var(--shadow-gold);
  margin: 0 auto;
  animation: heroPulse 3s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(201, 168, 76, 0.12),
      var(--shadow-gold);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(201, 168, 76, 0.06),
      var(--shadow-gold);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}
.hero__title strong {
  font-weight: 600;
  display: block;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 201, 122, 0.7);
  margin-bottom: 40px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 52px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: linear-gradient(
    135deg,
    var(--color-gold-light) 0%,
    var(--color-gold) 100%
  );
  color: var(--color-forest);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.45);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.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(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero__scroll svg {
  opacity: 0.55;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   ABOUT / BRAND SECTION
============================================ */
.about {
  background: var(--color-warm-white);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.about__deco-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}
.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.about__image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: linear-gradient(
    135deg,
    var(--color-forest),
    var(--color-emerald)
  );
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--color-gold);
}
.about__image-badge__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}
.about__image-badge__text {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 201, 122, 0.7);
  text-align: center;
  line-height: 1.4;
}

.about__content {
  padding-right: 20px;
}

.about__eyebrow {
  margin-bottom: 20px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-forest);
  margin-bottom: 8px;
}
.about__title em {
  font-style: italic;
  color: var(--color-emerald);
}

.about__divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: 28px 0;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-muted);
  margin-bottom: 36px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about__feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 39, 0.1),
    rgba(201, 168, 76, 0.1)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.about__feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-forest);
  margin-bottom: 2px;
}
.about__feature-text span {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ============================================
   STATS BAR
============================================ */
.stats {
  background: linear-gradient(
    135deg,
    var(--color-forest) 0%,
    var(--color-emerald) 100%
  );
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
}
.stats__item {
  padding: 0 20px;
}
.stats__item + .stats__item {
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}
.stats__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   MENU / PAKET SECTION
============================================ */
.menu {
  background: var(--color-cream);
  padding: 120px 60px;
}
.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header__eyebrow {
  margin-bottom: 16px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-forest);
  margin-bottom: 20px;
}
.section-header__title em {
  font-style: italic;
  color: var(--color-emerald);
}
.section-header__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-warm-white);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  group: true;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.menu-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-card:hover .menu-card__image {
  transform: scale(1.07);
}

.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 46, 26, 0.9) 0%,
    rgba(26, 46, 26, 0.3) 50%,
    transparent 100%
  );
  transition: opacity var(--transition);
}

.menu-card__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-fast);
}
.menu-card:hover .menu-card__zoom {
  opacity: 1;
  transform: scale(1);
}

.menu-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.menu-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.menu-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
}
.menu-card__desc {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin-bottom: 14px;
}
.menu-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  transition: gap var(--transition-fast);
}
.menu-card__cta:hover {
  gap: 14px;
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 10, 0.92);
  backdrop-filter: blur(12px);
}
.lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.is-open .lightbox__inner {
  transform: scale(1);
}
.lightbox__img {
  max-width: min(780px, 88vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.lightbox__close:hover {
  background: rgba(201, 168, 76, 0.2);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.lightbox__nav:hover {
  background: rgba(201, 168, 76, 0.25);
}
.lightbox__nav--prev {
  left: -60px;
}
.lightbox__nav--next {
  right: -60px;
}
.lightbox__caption {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--color-gold-light);
  text-align: center;
}

/* ============================================
   DELIVERY SECTION
============================================ */
.delivery {
  background: linear-gradient(170deg, var(--color-forest) 0%, #162a16 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.delivery::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.delivery__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.delivery__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--color-warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.delivery__title em {
  font-style: italic;
  color: var(--color-gold-light);
}
.delivery__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 52px;
  letter-spacing: 0.06em;
}
.delivery__apps {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.delivery-app {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.delivery-app:hover {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.delivery-app__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.delivery-app__icon--gofood {
  background: #ee1b24;
}
.delivery-app__icon--grabfood {
  background: #00b14f;
}
.delivery-app__icon--shopee {
  background: #f53d2d;
}
.delivery-app__text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-align: left;
}
.delivery-app__text span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}
.delivery-app__arrow {
  margin-left: auto;
  color: var(--color-gold);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-fast);
}
.delivery-app:hover .delivery-app__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   LOCATION SECTION
============================================ */
.location {
  background: var(--color-warm-white);
  padding: 120px 60px;
}
.location__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location__content {
  padding-top: 16px;
}
.location__eyebrow {
  margin-bottom: 20px;
}
.location__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--color-forest);
  line-height: 1.1;
  margin-bottom: 28px;
}
.location__title em {
  font-style: italic;
  color: var(--color-emerald);
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.location__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location__info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--color-forest),
    var(--color-emerald)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.location__info-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.location__info-text p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.6;
}
.location__info-text a {
  color: var(--color-emerald);
  transition: color var(--transition-fast);
}
.location__info-text a:hover {
  color: var(--color-gold);
}

.location__hours {
  background: linear-gradient(
    135deg,
    var(--color-forest),
    var(--color-emerald)
  );
  border-radius: var(--radius-md);
  padding: 28px;
  color: white;
}
.location__hours h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  font-weight: 300;
}
.location__hours-row:last-child {
  border-bottom: none;
}
.location__hours-row span:last-child {
  color: var(--color-gold-light);
}

.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 2px solid rgba(201, 168, 76, 0.15);
}
.location__map-wrap iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ============================================
   CONTACT / CTA SECTION
============================================ */
.cta {
  background: var(--color-cream);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  color: rgba(45, 90, 39, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  color: var(--color-forest);
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta__title em {
  font-style: italic;
  color: var(--color-emerald);
}
.cta__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta__contacts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
}
.cta__contact-btn--wa {
  background: #25d366;
  color: white;
}
.cta__contact-btn--wa:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}
.cta__contact-btn--email {
  background: var(--color-forest);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.cta__contact-btn--email:hover {
  background: var(--color-emerald);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--color-forest);
  padding: 60px 60px 40px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer__brand {
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 20px;
}
.footer__brand-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}
.footer__links a:hover {
  color: var(--color-gold-light);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}
.footer__copy em {
  font-style: normal;
  color: var(--color-gold);
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}
.footer__social:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 32px;
  }
  .navbar--scrolled {
    padding: 12px 32px;
  }
  .navbar__nav {
    gap: 24px;
  }
  .about,
  .menu,
  .delivery,
  .location,
  .cta {
    padding-left: 32px;
    padding-right: 32px;
  }
  .stats {
    padding: 48px 32px;
  }
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .about__inner {
    gap: 48px;
  }
  .location__inner {
    gap: 48px;
  }
  .footer__inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .navbar__nav,
  .navbar__cta {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .about__content {
    padding-right: 0;
  }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item + .stats__item {
    border-left: none;
  }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding-top: 32px;
  }
  .menu__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .location__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero__content {
    padding: 100px 24px 60px;
  }
  .about,
  .menu,
  .delivery,
  .location,
  .cta {
    padding: 80px 24px;
  }
  .stats {
    padding: 48px 24px;
  }
  .footer {
    padding: 48px 24px 32px;
  }
  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .location__map-wrap iframe {
    height: 340px;
  }
  .lightbox__nav--prev {
    left: -44px;
  }
  .lightbox__nav--next {
    right: -44px;
  }
  .delivery__apps {
    flex-direction: column;
    align-items: center;
  }
  .delivery-app {
    width: 100%;
    max-width: 340px;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-forest);
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right var(--transition);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}
.mobile-nav.is-open {
  right: 0;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-nav__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav__links a {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.mobile-nav__links a:hover {
  color: var(--color-gold-light);
}
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
