/* ========== RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1a0e07;
  --espresso: #2d1507;
  --roast: #4a2010;
  --gold: #c47f2a;
  --gold2: #e8a84e;
  --cream: #f7efe4;
  --parchment: #efe4d4;
  --white: #ffffff;
  --muted: #8a6a50;
  --light: #fdf9f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: #f2f2f2;
  overflow-x: hidden;
}

/* ========== LOADER ========== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .7s, visibility .7s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeIn .8s .3s forwards;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: load 1.8s ease forwards;
}

@keyframes load {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ========== CURSOR ========== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s, width .3s, height .3s, opacity .3s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .08s, width .3s, height .3s, opacity .3s;
  opacity: 0.6;
}

/* ========== NAVBAR ========== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}

#nav.solid {
  background: rgba(26, 14, 7, 0.96);
  backdrop-filter: blur(16px);
  padding: 16px 64px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
}

.nav-logo-mark svg {
  width: 36px;
  height: 36px;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 18px;
  transition: color .3s;
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-cta {
  background: var(--gold);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: .3s;
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity .4s;
}

#mobile-menu.open {
  opacity: 1;
}

#mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color .3s;
}

#mobile-menu a:hover {
  color: var(--gold);
}

/* ========== FLOATING ACTION BUTTONS (WA + TELP + GMAPS) ========== */
.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.wa {
  background: #25D366;
}

.float-btn.call {
  background: #34B7F1;
}

.float-btn.maps {
  background: #EA4335;
}

/* ========== HERO ========== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 14, 7, 0.92) 0%, rgba(26, 14, 7, 0.5) 55%, rgba(26, 14, 7, 0.2) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 127, 42, 0.18);
  border: 1px solid rgba(196, 127, 42, 0.35);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold2);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroIn 1s .3s both;
}

.hero-h1 em {
  color: var(--gold2);
  font-style: italic;
}

.hero-p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 44px;
  max-width: 420px;
  animation: heroIn 1s .5s both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroIn 1s .7s both;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(196, 127, 42, 0.35);
}

.btn-hero-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(196, 127, 42, 0.45);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color .3s, color .3s;
}

.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
}

/* ========== STATS ========== */
#stats {
  background: var(--espresso);
  padding: 50px 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item {
  padding: 44px 32px;
  text-align: center;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-item:hover {
  background: var(--roast);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-plus {
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.stat-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  opacity: 0.08;
}

/* ========== MENU SECTION ========== */
#menu {
  background: var(--light);
  padding: 100px 64px;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0;
}

.section-h2 em {
  color: var(--gold);
  font-style: italic;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.view-all-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap .3s, color .3s;
}

.view-all-link:hover {
  gap: 14px;
  color: var(--gold2);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.tab {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid #e0d4c4;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  transition: all .3s;
}

.tab.active,
.tab:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.loading-menu {
  text-align: center;
  padding: 60px;
  font-size: 18px;
  color: var(--muted);
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74, 32, 16, 0.07);
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74, 32, 16, 0.14);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #ede0cc;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.best {
  background: var(--ink);
}

.product-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform .2s, background .2s;
  z-index: 2;
}

.product-fav:hover {
  transform: scale(1.15);
  background: var(--white);
}

.product-body {
  padding: 22px 20px 20px;
}

.product-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.product-price span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.add-cart {
  background: var(--gold);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .2s;
}

.add-cart:hover {
  background: var(--ink);
  transform: scale(1.1);
}

/* ========== GALERI PREMIUM ========== */
#gallery {
  background: var(--cream);
  padding: 100px 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 32px;
}

/* ========== PROMO & EVENT ========== */
#promo {
  background: var(--light);
  padding: 100px 64px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.promo-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74, 32, 16, 0.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(74, 32, 16, 0.12);
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.promo-img {
  height: 200px;
  overflow: hidden;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.promo-card:hover .promo-img img {
  transform: scale(1.06);
}

.promo-body {
  padding: 24px;
}

.promo-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}

.promo-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.promo-date {
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== ABOUT / STORY ========== */
#story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-visual {
  position: relative;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--espresso));
}

.story-content {
  background: var(--espresso);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content .section-eyebrow {
  margin-bottom: 14px;
}

.story-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}

.story-h2 em {
  color: var(--gold2);
  font-style: italic;
}

.story-p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 36px;
  max-width: 440px;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 44px;
}

.sf-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sf-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(196, 127, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(196, 127, 42, 0.2);
}

.sf-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 3px;
}

.sf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
#testimonials {
  background: var(--cream);
  padding: 100px 64px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(74, 32, 16, 0.06);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74, 32, 16, 0.11);
}

.testi-quote {
  font-size: 40px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testi-text {
  font-size: 14px;
  line-height: 1.8;
  color: #5a4030;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--roast));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.testi-role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .5px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

/* ========== KONTAK & FORM ========== */
#kontak {
  background: var(--ink);
  padding: 100px 64px;
}

.kontak-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.kontak-left .section-eyebrow {
  margin-bottom: 14px;
}

.kontak-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.kontak-h2 em {
  color: var(--gold2);
  font-style: italic;
}

.kontak-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
}

.social-media-section {
  margin-bottom: 30px;
}

.social-media-section h4 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: background .3s;
}

.social-link:hover {
  background: var(--gold);
}

.instagram-feed {
  margin-bottom: 30px;
}

.instagram-feed h4 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 15px;
}

.insta-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.insta-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.insta-item {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontak-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ki-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ki-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.ki-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(196, 127, 42, 0.15);
  border: 1px solid rgba(196, 127, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ki-icon i {
  color: var(--gold);
}

.ki-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.ki-text strong {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 2px;
}

.ki-text span {
  font-size: 11px;
}

/* FORM STYLES */
.kontak-form,
.reservasi-form {
  background: var(--espresso);
  border-radius: 20px;
  padding: 44px 40px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .3s, background .3s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(196, 127, 42, 0.08);
}

.form-select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.form-select option {
  background: var(--espresso);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 16px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 6px 24px rgba(196, 127, 42, 0.3);
}

.btn-submit:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196, 127, 42, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success .check {
  font-size: 52px;
  margin-bottom: 16px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.form-success strong {
  color: var(--gold2);
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  display: block;
  margin-bottom: 8px;
}

/* ========== RESERVASI SECTION ========== */
#reservasi {
  background: var(--light);
  padding: 100px 64px;
}

.reservasi-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.reservasi-header {
  text-align: center;
  margin-bottom: 40px;
}

.reservasi-header p {
  color: var(--muted);
  margin-top: 10px;
}

.reservasi-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  margin-top: 30px;
}

/* ========== GOOGLE MAPS ========== */
#maps {
  position: relative;
}

.maps-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.maps-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2);
}

.maps-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: 250px;
}

.maps-info {
  color: white;
}

.maps-info i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.maps-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.maps-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.btn-maps {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 11px;
  transition: background .3s;
}

.btn-maps:hover {
  background: var(--gold2);
}

/* ========== FOOTER ========== */
footer {
  background: var(--espresso);
  padding: 80px 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.fc-item i {
  color: var(--gold);
  width: 20px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-love {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-love span {
  color: var(--gold);
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 14, 7, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 0;
  z-index: 990;
}

.mbn-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 9px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px;
  transition: color .3s;
}

.mbn-item svg {
  width: 22px;
  height: 22px;
}

.mbn-item.active,
.mbn-item:hover {
  color: var(--gold);
}

.mbn-center {
  background: var(--gold);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  margin-top: -24px;
  border: 3px solid var(--espresso);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 127, 42, 0.4);
}

/* ========== TOAST ========== */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9000;
  opacity: 0;
  transition: all .4s;
  pointer-events: none;
  white-space: nowrap;
  border-left: 3px solid var(--gold);
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s, transform .75s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .15s;
}

.reveal-delay-2 {
  transition-delay: .3s;
}

.reveal-delay-3 {
  transition-delay: .45s;
}

/* ========== MODAL KERANJANG ========== */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.cart-modal-content {
  background: var(--espresso);
  margin: 5% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
}

.cart-modal-header h2 i {
  color: var(--gold);
  margin-right: 10px;
}

.cart-modal-close {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color .3s;
}

.cart-modal-close:hover {
  color: var(--gold);
}

.cart-modal-body {
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart-message {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.empty-cart-message i {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--gold);
}

.empty-cart-message p {
  font-size: 16px;
  margin-bottom: 8px;
}

.empty-cart-message small {
  font-size: 12px;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 13px;
  color: var(--gold);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 8px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .3s;
}

.qty-btn:hover {
  background: var(--gold);
}

.qty-num {
  font-size: 14px;
  color: var(--white);
  min-width: 24px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 18px;
  transition: color .3s;
}

.remove-item:hover {
  color: #ff4444;
}

.cart-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.cart-total span:first-child {
  color: var(--gold);
}

#cart-total-amount {
  font-size: 22px;
  color: var(--gold2);
}

.cart-actions {
  display: flex;
  gap: 12px;
}

.cart-btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  border: none;
}

.clear-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.clear-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.checkout-btn {
  background: #25D366;
  color: white;
}

.checkout-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  #nav {
    padding: 16px 24px;
  }
  #nav.solid {
    padding: 12px 24px;
  }
  .nav-links,
  .btn-cta,
  .nav-icon-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #mobile-menu {
    display: flex;
  }
  .hero-content {
    padding: 0 24px;
  }
  #stats {
    padding: 40px 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #menu,
  #gallery,
  #promo,
  #testimonials,
  #kontak,
  #reservasi {
    padding: 72px 24px;
  }
  .products-grid,
  .gallery-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  #story {
    grid-template-columns: 1fr;
  }
  .story-visual {
    height: 280px;
  }
  .story-content {
    padding: 50px 24px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .kontak-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .kontak-form,
  .reservasi-form {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 60px 24px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .mobile-bottom-nav {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .hero-scroll {
    display: none;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  .floating-actions {
    bottom: 80px;
    right: 15px;
  }
  .float-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}