/* ============================================
   NASI LEMAK — Professional Website
   Design: Tilt Card Gallery (Reference Accurate)
   ============================================ */

:root {
  --cream: #f5ede0;
  --warm-brown: #3b1f0a;
  --mid-brown: #7a4520;
  --gold: #c8900a;
  --gold-light: #e8b84b;
  --dark: #111008;
  --dark2: #1a1208;
  --dark3: #221a08;
  --off-white: #f0e8d8;
  --text-dim: rgba(240, 232, 216, 0.5);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;

  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--warm-brown);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: default;
}

/* Custom cursor */
body::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--warm-brown);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--transition);
  mix-blend-mode: multiply;
  top: var(--cy, -20px);
  left: var(--cx, -20px);
  display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 42vh;
  padding: 60px 60px 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 144, 10, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(122, 69, 32, 0.12) 0%, transparent 70%),
    var(--cream);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.4;
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--warm-brown);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-top-right {
  max-width: 380px;
  padding-top: 10px;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(59, 31, 10, 0.65);
  line-height: 1.65;
  font-style: italic;
}

/* =============================================
   RESTORAN SHOWCASE (3D Tilt Cards)
   ============================================= */
.showcase-section {
  background: linear-gradient(180deg, var(--cream) 0%, #1a1208 15%, var(--dark) 100%);
  padding: 20px 0 50px;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(200, 144, 10, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 40%, rgba(150, 80, 20, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.showcase-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  perspective: 1200px;
}

/* Base card */
.show-card {
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  will-change: transform;
}

/* Photo card — larger, tilted left */
.show-card--photo {
  flex: 0 0 380px;
  height: 500px;
  transform: rotateY(6deg) rotateX(-2deg);
  z-index: 3;
}

/* Logo card — square, tilted right */
.show-card--logo {
  flex: 0 0 320px;
  height: 320px;
  transform: rotateY(-8deg) rotateX(2deg);
  z-index: 2;
}

/* Hover states */
.show-card--photo:hover {
  transform: rotateY(2deg) rotateX(-1deg) scale(1.04);
  z-index: 10;
  box-shadow:
    0 40px 100px rgba(200, 144, 10, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

.show-card--logo:hover {
  transform: rotateY(-3deg) rotateX(1deg) scale(1.06);
  z-index: 10;
  box-shadow:
    0 40px 100px rgba(200, 144, 10, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Inner container */
.show-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(200, 144, 10, 0.25);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.show-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-card:hover .show-card-inner img {
  transform: scale(1.06);
}

/* Holographic shine overlay */
.show-card-shine {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(255, 255, 255, 0.08) 45%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.08) 55%,
      transparent 70%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  transition: background-position 0.6s ease;
  pointer-events: none;
  z-index: 5;
}

.show-card:hover .show-card-shine {
  background-position: 0% 0%;
}

/* Caption overlay on photo card */
.show-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  background: linear-gradient(0deg,
      rgba(5, 3, 0, 0.88) 0%,
      rgba(5, 3, 0, 0.4) 60%,
      transparent 100%);
  border-radius: 0 0 22px 22px;
  z-index: 4;
}

.show-card-caption {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.show-card-sub {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Logo card special */
.show-card--logo .show-card-inner {
  border-color: rgba(200, 144, 10, 0.35);
  background: #1a100a;
}

.show-card--logo .show-card-inner img {
  object-fit: contain;
  padding: 0;
}

/* =============================================
   WORKS / DARK SECTION
   ============================================= */
.works-section {
  background: var(--dark);
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}

.works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(200, 144, 10, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(122, 69, 32, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.works-inner {
  position: relative;
}

/* Label top-left */
.works-label {
  position: absolute;
  top: 0;
  left: 60px;
  z-index: 5;
}

.works-label-text {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 180px;
  letter-spacing: 0.3px;
}

/* Giant heading */
.works-heading-wrap {
  padding: 0 60px;
  margin-bottom: 50px;
}

.works-heading {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 14vw, 14rem);
  color: var(--off-white);
  letter-spacing: -2px;
  line-height: 0.9;
  user-select: none;
}

/* =============================================
   CARDS
   ============================================= */
.cards-container {
  width: 100%;
  overflow: hidden;
  padding: 0 60px;
  position: relative;
  display: flex;
  justify-content: center;
}

.cards-track {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  transition: transform 0.7s var(--transition);
  will-change: transform;
  justify-content: center;
}

/* Base card */
.card {
  flex: 0 0 210px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-origin: bottom center;
  transition:
    transform 0.5s var(--transition),
    flex-basis 0.5s var(--transition),
    height 0.5s var(--transition),
    box-shadow 0.4s ease;
  will-change: transform;
}

/* Tilt effect — each card has slight rotation */
.card[data-index="0"] {
  transform: rotate(-6deg) translateY(20px);
}

.card[data-index="1"] {
  transform: rotate(-3deg) translateY(8px);
}

.card[data-index="2"] {
  transform: rotate(0deg) translateY(0px);
}

.card[data-index="3"] {
  transform: rotate(3deg) translateY(8px);
}

.card[data-index="4"] {
  transform: rotate(6deg) translateY(20px);
}

.card:hover {
  z-index: 10;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.card[data-index="0"]:hover {
  transform: rotate(-2deg) translateY(10px) scale(1.04);
}

.card[data-index="1"]:hover {
  transform: rotate(-1deg) translateY(4px) scale(1.04);
}

.card[data-index="2"]:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.06);
}

.card[data-index="3"]:hover {
  transform: rotate(1deg) translateY(4px) scale(1.04);
}

.card[data-index="4"]:hover {
  transform: rotate(2deg) translateY(10px) scale(1.04);
}

/* Featured (center) card */
.card--featured {
  flex: 0 0 255px;
  height: 420px;
  z-index: 5;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition);
  border-radius: 20px;
}

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

/* Gradient overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 18px;
  background: linear-gradient(0deg,
      rgba(10, 6, 0, 0.92) 0%,
      rgba(10, 6, 0, 0.55) 55%,
      transparent 100%);
  border-radius: 0 0 20px 20px;
}

.card-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 30px;
  margin-bottom: 8px;
}

.card--featured .card-tag {
  background: rgba(200, 144, 10, 0.25);
  border-color: rgba(200, 144, 10, 0.4);
  color: var(--gold-light);
}

.card-title {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card--featured .card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Nav arrows */
.nav-arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 232, 216, 0.18);
  background: transparent;
  color: var(--off-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(200, 144, 10, 0.15);
  border-color: rgba(200, 144, 10, 0.5);
  color: var(--gold-light);
  transform: scale(1.08);
}

.nav-btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.nav-btn--active:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
}

/* =============================================
   INFO STRIP
   ============================================= */
.info-strip {
  background: var(--dark2);
  padding: 28px 60px;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-emoji {
  font-size: 1.6rem;
}

.info-label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-price {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  line-height: 1;
}

.info-phone {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  cursor: pointer;
}

.info-phone:hover {
  color: var(--gold-light);
}

.info-divider {
  width: 1px;
  height: 50px;
  background: rgba(240, 232, 216, 0.1);
}

/* =============================================
   PROOF SECTION
   ============================================= */
.proof-section {
  background: var(--dark3);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 144, 10, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.proof-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.proof-badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200, 144, 10, 0.35);
  background: rgba(200, 144, 10, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: none !important;
}

.proof-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--off-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.proof-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.proof-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}

.proof-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 18px;
  transition: background 0.3s, border-color 0.3s;
}

.proof-feat:hover {
  background: rgba(200, 144, 10, 0.06);
  border-color: rgba(200, 144, 10, 0.2);
}

.pf-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.proof-feat p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: rgba(240, 232, 216, 0.75);
  line-height: 1.5;
}

.proof-feat p strong {
  color: var(--off-white);
}

.proof-note {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: rgba(240, 232, 216, 0.5);
  font-style: italic;
  margin-bottom: 24px;
}

.proof-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 50, 50, 0.06);
  border: 1px solid rgba(255, 50, 50, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 40px;
}

.proof-warning span {
  font-size: 1.2rem;
}

.proof-warning p {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff8080;
  letter-spacing: 0.3px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow:
    0 8px 30px rgba(200, 144, 10, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--transition), box-shadow 0.25s ease;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  border-radius: 50px;
  pointer-events: none;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(200, 144, 10, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-btn:active {
  transform: translateY(0) scale(0.99);
}

.proof-footer {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(240, 232, 216, 0.4);
  font-style: italic;
  margin-bottom: 10px;
}

.proof-tag {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* =============================================
   360° ROOM SLIDER
   ============================================= */
.room-section {
  background: #060300;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Clip wrapper so 3D panels don't bleed outside the dark section */
.room-scene-clip {
  overflow: hidden;
  width: 100%;
  height: 700px;
  position: relative;
}

.room-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 144, 10, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(180, 80, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Header */
.room-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.room-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(200, 144, 10, 0.5);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.room-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--off-white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}

.room-desc {
  font-family: var(--ff-mono, monospace);
  font-size: 0.75rem;
  color: rgba(240, 232, 216, 0.3);
  letter-spacing: 2px;
}

/* Scene — the 3D viewport */
.room-scene {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: visible;
  cursor: grab;
}

.room-scene:active {
  cursor: grabbing;
}

/* Stage with perspective — position:relative so panels centre correctly */
.room-stage {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 1800px;
  perspective-origin: 50% 42%;
  overflow: visible;
}

/* Cylinder that rotates — centred absolutely in the stage */
.room-cylinder {
  width: 220px;
  height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg);
  transform-style: preserve-3d;
  will-change: transform;
  animation: room-auto-spin 40s linear infinite;
}

.room-cylinder.user-dragging {
  animation: none;
}

@keyframes room-auto-spin {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(-360deg);
  }
}

/* Individual panel */
.room-panel {
  position: absolute;
  top: 0;
  left: -110px;
  width: 220px;
  height: 500px;
  transform-style: preserve-3d;
  cursor: pointer;
  transition: filter 0.4s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.room-panel:hover {
  filter: brightness(1.2);
}

/* Panel image */
.panel-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(200, 144, 10, 0.2);
  box-shadow:
    0 0 60px rgba(0, 0, 0, 0.7),
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.panel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(1.15);
  transition: filter 0.4s ease;
}

.room-panel:hover .panel-img-wrap img {
  filter: brightness(1.05) saturate(1.3);
}

/* Panel glow border */
.panel-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg,
      rgba(200, 144, 10, 0.06) 0%,
      transparent 40%,
      transparent 60%,
      rgba(200, 144, 10, 0.1) 100%);
  pointer-events: none;
}

/* Floor reflection */
.panel-floor-reflect {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  transform: scaleY(-1);
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.panel-floor-reflect img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: bottom;
  filter: blur(2px) saturate(0.6);
}

/* Panel label */
.panel-label {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(200, 144, 10, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Reflective floor plane */
.room-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 220px;
  background: linear-gradient(to bottom,
      rgba(15, 8, 0, 0.6) 0%,
      rgba(5, 3, 0, 0.95) 60%,
      #060300 100%);
  transform: perspective(600px) rotateX(80deg);
  transform-origin: bottom center;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

/* Ceiling glow */
.room-ceiling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200, 120, 0, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

/* Orbs on floor */
.room-orbs {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  pointer-events: none;
  z-index: 5;
}

.orb {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 220, 100, 0.9), rgba(200, 100, 0, 0.3));
  box-shadow: 0 0 20px rgba(200, 144, 10, 0.4), 0 0 40px rgba(200, 80, 0, 0.2);
  animation: orb-float 3s ease-in-out infinite;
}

.orb1 {
  width: 14px;
  height: 14px;
  animation-delay: 0s;
}

.orb2 {
  width: 10px;
  height: 10px;
  animation-delay: 0.5s;
  opacity: 0.7;
}

.orb3 {
  width: 8px;
  height: 8px;
  animation-delay: 1s;
  opacity: 0.5;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Controls */
.room-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.room-btn {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(240, 232, 216, 0.5);
  background: transparent;
  border: 1px solid rgba(240, 232, 216, 0.1);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.room-btn:hover {
  color: var(--gold-light);
  border-color: rgba(200, 144, 10, 0.4);
  background: rgba(200, 144, 10, 0.08);
}

.room-drag-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(240, 232, 216, 0.3);
}

.drag-icon {
  font-size: 1.1rem;
  color: rgba(200, 144, 10, 0.5);
  animation: spin-hint 4s linear infinite;
  display: inline-block;
}

@keyframes spin-hint {
  to {
    transform: rotate(360deg);
  }
}

/* Active panel highlight */
.room-panel.active .panel-img-wrap {
  border-color: rgba(200, 144, 10, 0.5);
  box-shadow:
    0 0 60px rgba(200, 144, 10, 0.25),
    0 0 20px rgba(200, 100, 0, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.room-panel.active .panel-label {
  color: var(--gold-light);
}

/* =============================================
   MENU SLIDER SECTION (Voyager2 Style)
   ============================================= */
.menu-slider-section {
  background: #0a0600;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.menu-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(200, 144, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.menu-slider-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.menu-slider-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-slider-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--off-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.menu-slider-desc {
  font-family: var(--ff-body);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: rgba(240, 232, 216, 0.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* Viewport — perspective container */
.menu-cards-viewport {
  width: 100%;
  overflow: visible;
  perspective: 1400px;
  perspective-origin: 50% 45%;
}

/* Track — cards laid out horizontally */
.menu-cards-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 30px 0 60px;
}

/* Individual Menu Card */
.m-card {
  flex: 0 0 200px;
  height: 320px;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  transform-origin: bottom center;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  will-change: transform;
}

/* Staggered rotations like Voyager2 reference */
.m-card[data-menu="0"] {
  transform: perspective(800px) rotateY(18deg) rotateZ(-3deg) scale(0.92);
}

.m-card[data-menu="1"] {
  transform: perspective(800px) rotateY(8deg) rotateZ(-1.5deg) scale(0.96);
}

.m-card[data-menu="2"] {
  transform: perspective(800px) rotateY(0deg) rotateZ(0deg) scale(1.05);
  z-index: 5;
  height: 380px;
  flex: 0 0 230px;
}

.m-card[data-menu="3"] {
  transform: perspective(800px) rotateY(-8deg) rotateZ(1.5deg) scale(0.96);
}

.m-card[data-menu="4"] {
  transform: perspective(800px) rotateY(-18deg) rotateZ(3deg) scale(0.92);
}

/* Hover */
.m-card:hover {
  z-index: 10;
  box-shadow: 0 30px 80px rgba(200, 144, 10, 0.3), 0 0 40px rgba(0, 0, 0, 0.5);
}

.m-card[data-menu="0"]:hover {
  transform: perspective(800px) rotateY(10deg) rotateZ(-1deg) scale(1.02);
}

.m-card[data-menu="1"]:hover {
  transform: perspective(800px) rotateY(4deg) rotateZ(-0.5deg) scale(1.04);
}

.m-card[data-menu="2"]:hover {
  transform: perspective(800px) rotateY(0deg) rotateZ(0deg) scale(1.1);
}

.m-card[data-menu="3"]:hover {
  transform: perspective(800px) rotateY(-4deg) rotateZ(0.5deg) scale(1.04);
}

.m-card[data-menu="4"]:hover {
  transform: perspective(800px) rotateY(-10deg) rotateZ(1deg) scale(1.02);
}

/* Card inner */
.m-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(200, 144, 10, 0.18);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 -1px 1px rgba(255, 255, 255, 0.04);
}

.m-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.m-card:hover .m-card-inner img {
  transform: scale(1.08);
}

/* Gradient overlay */
.m-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(5, 3, 0, 0.92) 0%,
      rgba(5, 3, 0, 0.5) 40%,
      transparent 70%);
  pointer-events: none;
  border-radius: 18px;
}

/* Best seller badge */
.m-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(200, 144, 10, 0.4);
  z-index: 5;
}

/* Card info */
.m-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 18px;
  z-index: 4;
}

.m-card-name {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.m-card-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(200, 144, 10, 0.3);
}

/* Center card larger text */
.m-card[data-menu="2"] .m-card-name {
  font-size: 0.8rem;
}

.m-card[data-menu="2"] .m-card-price {
  font-size: 2rem;
}

.m-card[data-menu="2"] .m-card-inner {
  border-color: rgba(200, 144, 10, 0.35);
  box-shadow:
    0 30px 70px rgba(200, 144, 10, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 -1px 1px rgba(255, 255, 255, 0.06);
}

/* Best seller glow */
.m-card--best .m-card-inner {
  border-color: rgba(200, 144, 10, 0.4);
  box-shadow:
    0 20px 60px rgba(200, 144, 10, 0.25),
    0 15px 40px rgba(0, 0, 0, 0.5),
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  padding: 24px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.site-footer p {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(240, 232, 216, 0.25);
  letter-spacing: 1px;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.35s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero {
    padding: 40px 30px 40px;
  }

  .hero-top {
    flex-direction: column;
    gap: 20px;
  }

  .works-heading-wrap {
    padding: 0 30px;
  }

  .works-label {
    left: 30px;
  }

  .cards-container {
    padding: 0 20px;
  }

  .card {
    flex: 0 0 160px;
    height: 270px;
  }

  .card--featured {
    flex: 0 0 190px;
    height: 310px;
  }

  .proof-section {
    padding: 70px 30px;
  }

  .info-strip {
    padding: 24px 30px;
  }

  .info-strip-inner {
    gap: 24px;
  }

  .info-divider {
    display: none;
  }

  .site-footer {
    padding: 20px 30px;
  }

  .menu-slider-section {
    padding: 60px 0 50px;
  }

  .menu-slider-inner {
    padding: 0 20px;
  }

  .menu-cards-track {
    flex-wrap: wrap;
    gap: 16px;
  }

  .m-card {
    flex: 0 0 140px;
    height: 240px;
  }

  .m-card[data-menu="2"] {
    flex: 0 0 160px;
    height: 280px;
  }

  .m-card[data-menu="0"],
  .m-card[data-menu="1"],
  .m-card[data-menu="3"],
  .m-card[data-menu="4"] {
    transform: perspective(800px) rotateY(0deg) rotateZ(0deg) scale(0.95);
  }
}