/* =====================================================
   TIGA KOFFIE – style.css
   Design: Elegant Dark with warm coffee gold accents
   Typography: Playfair Display + DM Sans + Bebas Neue
   ===================================================== */

/* ── CSS VARIABLES ───────────────────────────────── */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #2a2a2a;
  --white: #fafafa;
  --white-soft: #f0ede8;
  --cream: #e8e0d5;
  --gold: #c8a97e;
  --gold-dark: #9e7c52;
  --gold-light: #e0c9a6;
  --red-accent: #c0392b;
  --text-primary: #fafafa;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --text-dark: #1a1a1a;

  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Bebas Neue", "Impact", sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(200, 169, 126, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --container: 1240px;
}

/* ── RESET & BASE ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: auto;
}

body.loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── UTILITY ─────────────────────────────────────── */
.d-none-sm {
  display: initial;
}

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ====================================================
   PRELOADER
==================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  animation: preloader-pulse 1.5s ease infinite;
}

.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.preloader-bar {
  width: 220px;
  height: 2px;
  background: var(--black-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius-full);
  animation: preloader-load 2s ease forwards;
}

.preloader-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-style: italic;
}

@keyframes preloader-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(200, 169, 126, 0);
  }
}

@keyframes preloader-load {
  0% {
    width: 0%;
  }
  60% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}

/* ====================================================
   NAVBAR
==================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 var(--black-border),
    var(--shadow-sm);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-text-fallback {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo-text-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.1em;
}

.logo-text-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  color: var(--text-secondary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-med);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.75rem);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-order {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 169, 126, 0.4);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition-med);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====================================================
   BUTTONS (GLOBAL)
==================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 126, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  cursor: pointer;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border: 1.5px solid var(--black-border);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.06);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ====================================================
   SECTION LABELS & HEADERS
==================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label.light {
  color: rgba(200, 169, 126, 0.9);
}
.section-label.light::before {
  background: rgba(200, 169, 126, 0.9);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.center .section-desc {
  text-align: center;
}

/* ====================================================
   REVEAL ANIMATIONS
==================================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(48px);
}
.reveal-left {
  transform: translateX(-48px);
}
.reveal-right {
  transform: translateX(48px);
}

.reveal-up.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0);
}

[data-delay="200"] {
  transition-delay: 0.2s;
}
[data-delay="400"] {
  transition-delay: 0.4s;
}

/* ====================================================
   HERO SECTION
==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  background: rgba(200, 169, 126, 0.07);
  animation: fade-down 0.8s 0.3s both;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line.line-1 {
  color: var(--white);
  animation: slide-up 0.9s 0.5s both;
}
.hero-title-line.line-2 {
  color: var(--gold);
  font-style: italic;
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  animation: slide-up 0.9s 0.65s both;
}
.hero-title-line.line-3 {
  color: var(--white);
  animation: slide-up 0.9s 0.8s both;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fade-up 0.9s 1s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fade-up 0.9s 1.15s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fade-up 0.9s 1.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-right: 2.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: inline;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  animation: fade-up 0.9s 1.5s both;
  z-index: 2;
}

.scroll-line {
  width: 1.5px;
  height: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-grow 2.2s ease-in-out infinite;
}

@keyframes scroll-grow {
  0% {
    height: 0;
    opacity: 1;
  }
  80% {
    height: 48px;
    opacity: 0.3;
  }
  100% {
    height: 48px;
    opacity: 0;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-down {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ====================================================
   MARQUEE STRIP
==================================================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
  white-space: nowrap;
}

.marquee-dot {
  color: rgba(0, 0, 0, 0.45) !important;
  font-size: 0.65rem !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ====================================================
   ABOUT SECTION
==================================================== */
.about {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 126, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--black);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-accent:hover img {
  transform: scale(1.06);
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.about-feature:hover .feature-icon {
  background: rgba(200, 169, 126, 0.18);
  border-color: rgba(200, 169, 126, 0.35);
}

.about-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ====================================================
   MENU SECTION
==================================================== */
.menu-section {
  padding: 7rem 0;
  position: relative;
  background: var(--black-soft);
  overflow: hidden;
}

.menu-section-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 50%,
      rgba(200, 169, 126, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(200, 169, 126, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-tab {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.menu-tab i {
  font-size: 0.75rem;
}

.menu-tab:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
  background: rgba(200, 169, 126, 0.06);
}

.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-fast);
  animation: fade-card 0.4s ease both;
}

@keyframes fade-card {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  border-color: rgba(200, 169, 126, 0.25);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--black-card);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.menu-card-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-body);
}

/* ====================================================
   HIGHLIGHT BANNER
==================================================== */
.highlight-banner {
  position: relative;
  overflow: hidden;
}

.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.highlight-img {
  position: relative;
  overflow: hidden;
}

.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.highlight-banner:hover .highlight-img img {
  transform: scale(1.04);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}

.highlight-content {
  background: var(--black);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}

.highlight-title em {
  color: var(--gold);
  font-style: italic;
}

.highlight-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.975rem;
  max-width: 400px;
}

.highlight-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem;
}

.highlight-price strong {
  color: var(--gold);
  font-size: 1.25rem;
}

/* ====================================================
   GALLERY
==================================================== */
.gallery {
  padding: 7rem 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 270px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background var(--transition-med);
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--transition-med),
    transform var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   TESTIMONIALS
==================================================== */
.testimonials {
  padding: 7rem 0;
  background: var(--black-soft);
  overflow: hidden;
}

.testi-track-wrap {
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

.testi-track-wrap::before,
.testi-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black-soft), transparent);
}

.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black-soft), transparent);
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0 1rem;
}

.testi-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform var(--transition-med),
    border-color var(--transition-fast);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 126, 0.2);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  flex: 1;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-user strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
}

.testi-user span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black-border);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ====================================================
   LOCATION SECTION
==================================================== */
.location {
  padding: 7rem 0;
  background: var(--black);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--transition-fast);
}

.loc-item:hover .loc-icon {
  background: rgba(200, 169, 126, 0.18);
}

.loc-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.loc-text span,
.loc-text a {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.65;
}

.loc-text a:hover {
  color: var(--gold);
}

.loc-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--black-border);
}

.map-wrap {
  height: 480px;
  width: 100%;
}

.map-wrap iframe {
  border: none;
  border-radius: var(--radius-lg);
}

/* ====================================================
   CTA / CONTACT SECTION
==================================================== */
.cta-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.9)
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-title em {
  color: var(--gold);
  font-style: italic;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ====================================================
   FOOTER
==================================================== */
.footer {
  background: var(--black-soft);
  padding: 5rem 0 0;
  border-top: 1px solid var(--black-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--black-border);
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 126, 0.08);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a,
.footer-list span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer-list a:hover {
  color: var(--gold);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-credits {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ====================================================
   BACK TO TOP
==================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity var(--transition-med),
    transform var(--transition-med),
    background var(--transition-fast);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-light);
}

/* ====================================================
   MOBILE MENU OVERLAY
==================================================== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.75rem 2rem;
  }

  .nav-link::after {
    bottom: 8px;
  }

  .hamburger {
    display: flex;
  }

  .btn-order span {
    display: none;
  }
  .btn-order {
    padding: 0.6rem 0.875rem;
  }
}

/* ====================================================
   RESPONSIVE – TABLET (1100px)
==================================================== */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 420px;
    max-width: 560px;
    margin: 0 auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlight-inner {
    grid-template-columns: 1fr;
  }

  .highlight-img {
    height: 320px;
  }

  .highlight-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
  }

  .highlight-content {
    padding: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ====================================================
   RESPONSIVE – TABLET SMALL (768px)
==================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .d-none-sm {
    display: none;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero-title-line.line-2 {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-stats {
    gap: 0;
  }

  .stat-item {
    padding-right: 1.5rem;
  }
  .stat-divider {
    margin-right: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .about-images {
    height: 340px;
  }
  .about-img-main {
    width: 80%;
    height: 85%;
  }
  .about-img-accent {
    width: 55%;
    height: 50%;
  }

  .location-grid {
    gap: 2.5rem;
  }
  .map-wrap {
    height: 320px;
  }

  .loc-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-card {
    min-width: 300px;
    max-width: 300px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  /* Section padding reductions */
  .cta-section {
    padding: 6rem 0;
  }
  .about {
    padding: 5rem 0;
  }
  .menu-section {
    padding: 5rem 0;
  }
  .gallery {
    padding: 5rem 0;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .location {
    padding: 5rem 0;
  }
}

/* ====================================================
   RESPONSIVE – MOBILE (480px)
==================================================== */
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 1.5rem 1.25rem 5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding-right: 0;
  }

  .menu-tabs {
    gap: 0.4rem;
  }

  .menu-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }

  .menu-card-img {
    height: 150px;
  }

  .menu-card-body {
    padding: 1rem;
  }

  .menu-card-name {
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.75rem;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: span 1;
    height: 220px;
  }

  .about-images {
    height: 280px;
  }

  .highlight-content {
    padding: 2rem 1.25rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn-white,
  .cta-actions .btn-ghost-white {
    width: 100%;
    justify-content: center;
  }

  .testi-card {
    min-width: 270px;
    max-width: 270px;
    padding: 1.5rem;
  }

  .loc-cta-group .btn-primary,
  .loc-cta-group .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .footer-grid {
    gap: 1.75rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

/* ====================================================
   RESPONSIVE – VERY SMALL (360px)
==================================================== */
@media (max-width: 360px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero-title-line.line-2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .testi-card {
    min-width: 250px;
    max-width: 250px;
  }
}
