/* =====================================================
   VARIABLES
   ===================================================== */
:root {
  --bg:          #050507;
  --bg-elevated: #0c0c10;
  --bg-card:     #0e0e14;
  --bg-glass:    rgba(255,255,255,0.04);

  --text:        #f0f0f5;
  --text-muted:  #6b6b78;
  --text-dim:    #35353f;

  --pink:   #ff2a6d;
  --orange: #ff7a00;
  --blue:   #05d9e8;
  --red:    #ff003c;
  --green:  #25D366;

  --font-display: 'Anton', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-circ:   cubic-bezier(0.85, 0, 0.15, 1);

  --z-base:   1;
  --z-card:   10;
  --z-nav:    50;
  --z-cursor: 200;
  --z-noise:  300;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { background: none; border: none; font-family: inherit; }

/* =====================================================
   FIXED LAYERS
   ===================================================== */
.noise-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.025;
  background-image: url('data:image/svg+xml;utf8,%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)"/%3E%3C/svg%3E');
}

.cursor-glow {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,42,109,0.07) 0%, transparent 65%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: var(--z-cursor);
  will-change: transform;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 8rem 0; position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pink);
  background: rgba(255,42,109,0.08);
  border: 1px solid rgba(255,42,109,0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

h1, h2, h3, .huge-bg-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-desc { margin: 0 auto; }

/* Text effects */
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
}

.gradient-text {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-flow 4s linear infinite;
}
.gradient-text-blue {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-flow 4s linear infinite;
}
@keyframes grad-flow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.neon-pink-text {
  color: var(--pink);
  text-shadow: 0 0 20px rgba(255,42,109,0.6), 0 0 50px rgba(255,42,109,0.25);
}
.neon-red-text {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,0,60,0.6), 0 0 50px rgba(255,0,60,0.25);
}
.pulse-text { animation: text-pulse 2.5s ease-in-out infinite; }
@keyframes text-pulse {
  0%,100% { text-shadow: 0 0 20px rgba(255,0,60,0.6), 0 0 40px rgba(255,0,60,0.25); }
  50%      { text-shadow: 0 0 35px rgba(255,0,60,1), 0 0 70px rgba(255,0,60,0.4), 0 0 100px rgba(255,0,60,0.15); }
}

/* Neon dividers */
.neon-divider {
  width: 100%; height: 1px; position: relative;
  background: linear-gradient(90deg, transparent, var(--pink) 35%, var(--orange) 65%, transparent);
  opacity: 0.3;
}
.neon-divider::after {
  content: ''; position: absolute; inset: -2px;
  background: inherit; filter: blur(5px); opacity: 0.5;
}
.neon-divider-dim { opacity: 0.08; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo), background 0.3s;
  -webkit-user-select: none;
  user-select: none;
  border: none;
}
.btn:active { transform: scale(0.97) !important; }

.btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}
.btn:hover .btn-icon-wrap { transform: translate(2px,-1px) scale(1.12); }

/* Primary */
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,42,109,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover {
  background: #ff1860;
  box-shadow: 0 8px 32px rgba(255,42,109,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* Glass */
.btn-glass {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1fb85a;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}
.wa-svg { display: flex; align-items: center; }

/* Sizes */
.btn-large { padding: 1.1rem 2.25rem; font-size: 0.9rem; }
.btn-xl    { padding: 1.25rem 2.75rem; font-size: 0.95rem; }

/* Ghost nav */
.btn-ghost-nav {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-muted);
  transition: color 0.2s;
}
.btn-ghost-nav:hover { color: var(--text); }

/* Pulse ring on hero button */
.btn-pulse::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 8px;
  background: var(--pink);
  opacity: 0;
  animation: pulse-ring 2.5s var(--ease-expo) infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Pulse on final CTA */
.btn-pulse-anim::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 8px;
  border: 1px solid var(--pink);
  opacity: 0;
  animation: cta-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes cta-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Ripple */
.btn-ripple .ripple {
  position: absolute;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: ripple-out 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: translate(-50%,-50%) scale(80); opacity: 0; }
}

/* Card CTA button */
.card-cta {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: all 0.25s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.card-cta:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,42,109,0.4);
}

/* =====================================================
   HEADER — floating pill
   ===================================================== */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  width: calc(100% - 3rem);
  max-width: 1100px;
  transition: top 0.4s var(--ease-expo);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  background: rgba(8,8,12,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled .header-inner {
  background: rgba(5,5,7,0.95);
  box-shadow: 0 12px 40px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.04);
}

.logo { height: 34px; object-fit: contain; transition: transform 0.3s var(--ease-spring); }
.logo:hover { transform: scale(1.05); }

.desktop-nav { display: flex; gap: 0.2rem; }
.nav-item {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.06); }

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

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .hide-mobile { display: none; }
}
@media (max-width: 576px) {
  .header { width: calc(100% - 2rem); top: 1rem; }
  .header-inner { padding: 0.7rem 1rem; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-layer {
  position: absolute; inset: 0; z-index: 0;
}
.layer-bg { transform: scale(1.08); will-change: transform; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.1) contrast(1.1);
}

.hero-aurora {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 12% 52%, rgba(255,42,109,0.2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 82% 18%, rgba(255,122,0,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 65% 82%, rgba(5,217,232,0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,5,7,0.25) 0%, rgba(5,5,7,0.65) 65%, var(--bg) 100%);
  animation: aurora-drift 14s ease-in-out infinite alternate;
  will-change: opacity;
}
@keyframes aurora-drift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04) translate(1%, -1%); }
}

.hero-scanlines {
  position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.025) 3px, rgba(0,0,0,0.025) 4px);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(5,5,7,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 950px;
  padding-top: 1rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: dot-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-blink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px var(--pink); }
  50%      { opacity: 0.4; box-shadow: 0 0 2px var(--pink); }
}

.hero-title {
  font-size: clamp(3.8rem, 9vw, 9.5rem);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.title-line { display: block; overflow: visible; }

.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  max-width: 570px;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.85;
}
.br-desktop { display: block; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.scroll-pill {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--pink);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--pink);
}
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}
.scroll-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

/* Floating notification */
.hero-notification {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(12,12,18,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  padding: 0.75rem 1.3rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 3;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}
.hero-notification.show {
  opacity: 1;
  transform: translateY(0);
  animation: notif-float 4s 0.6s ease-in-out infinite;
}
@keyframes notif-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.notif-icon { font-size: 1rem; }
.notif-text { display: flex; flex-direction: column; line-height: 1.3; }
.notif-text strong { font-size: 0.83rem; font-weight: 700; }
.notif-text span   { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .hero-notification { display: none; }
  .br-desktop { display: none; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-section {
  padding: 3.5rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.stat-item {
  text-align: center;
  transition-delay: var(--delay, 0s);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff 40%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stat-divider {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.07);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stat-divider { display: none; }
}

/* =====================================================
   MENU CARDS
   ===================================================== */
.dark-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 992px) {
  .menu-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* Double-bezel outer shell */
.menu-card {
  position: relative;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px;
  cursor: pointer;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
  transform-style: preserve-3d;
}
.menu-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,42,109,0.15);
}

/* Inner core */
.card-inner {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Animated gradient border — featured card */
.card-featured {
  border-color: transparent;
}
.card-glow-border {
  position: absolute; inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--blue), var(--pink));
  background-size: 300% 300%;
  animation: grad-border 3s ease infinite;
  z-index: -1;
  opacity: 0.65;
}
@keyframes grad-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-expo);
  filter: contrast(1.06) saturate(1.1);
}
.menu-card:hover .card-img { transform: scale(1.09); }

/* Holographic shimmer */
.card-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  background-position: 0% 0%;
  transition: background-position 0.55s var(--ease-expo);
  pointer-events: none;
}
.menu-card:hover .card-img-shine { background-position: 100% 100%; }

/* Badges */
.card-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem; border-radius: 4px;
  z-index: 2;
}
.badge-hot { background: var(--pink); color: #fff; box-shadow: 0 0 12px rgba(255,42,109,0.55); }
.badge-new { background: var(--blue); color: #020b10; }

.card-content { padding: 1.65rem; }
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}
.card-desc {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255,122,0,0.3);
  font-variant-numeric: tabular-nums;
}

.center-cta { text-align: center; }

/* =====================================================
   EXPERIENCE
   ===================================================== */
.experience-section {
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}

/* Mouse spotlight */
.mouse-spotlight {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,109,0.06) 0%, transparent 68%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  opacity: 0;
  z-index: 0;
  will-change: left, top;
  transition: opacity 0.4s;
}

/* Marquee */
.experience-marquee {
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.035);
  position: absolute;
  top: 8%; left: 0; width: 100%;
  z-index: 0;
  transform: rotate(-3deg) scale(1.06);
  pointer-events: none;
}
.marquee-track {
  display: inline-block;
  animation: marquee-run 22s linear infinite;
}
.msep { margin: 0 1.5rem; -webkit-text-stroke-color: rgba(255,42,109,0.12); }
@keyframes marquee-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.experience-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .experience-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.experience-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.2rem;
  max-width: 480px;
}

.experience-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.exp-item {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s var(--ease-expo);
  cursor: default;
}
.exp-item:hover {
  background: rgba(255,42,109,0.06);
  border-color: rgba(255,42,109,0.15);
  transform: translateX(6px);
}
.exp-icon { font-size: 1.2rem; }

/* Stacked images */
.experience-images { position: relative; height: 520px; }
.img-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,0.7);
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.img-card:hover img { transform: scale(1.04); }

.back-card  { width: 82%; height: 370px; top: 0; right: 0; opacity: 0.72; border: 1px solid rgba(255,255,255,0.05); }
.front-card { width: 72%; height: 310px; bottom: 0; left: 0; border: 3px solid var(--bg-elevated); box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,42,109,0.1); }

.float-anim         { animation: float 7s ease-in-out infinite; }
.float-anim-delayed { animation: float 7s ease-in-out infinite; animation-delay: -3.5s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.6deg); }
}

@media (max-width: 768px) {
  .experience-images { height: 380px; }
  .back-card  { height: 280px; }
  .front-card { height: 240px; }
}

/* =====================================================
   ATTITUDE / ABOUT
   ===================================================== */
.attitude-section {
  padding: 10rem 0;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}

.attitude-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 28% 50%, rgba(255,42,109,0.055) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 72% 50%, rgba(255,122,0,0.04) 0%, transparent 58%);
  animation: mesh-breathe 10s ease-in-out infinite alternate;
}
@keyframes mesh-breathe {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08) translate(2%,-2%); }
}

.attitude-container { position: relative; z-index: 1; }

.huge-bg-text {
  font-size: clamp(5rem, 18vw, 15rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.035);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.attitude-title { font-size: clamp(3.5rem, 7vw, 6.5rem); }
.attitude-desc {
  max-width: 660px;
  margin: 2rem auto 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.95;
  font-weight: 400;
  text-wrap: pretty;
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  background: var(--bg-elevated);
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.cta-text-block h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cta-text-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cta-strip-inner { flex-direction: column; text-align: center; }
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { position: relative; padding: 0; }

/* Cyber grid scanline */
.gallery-scanlines {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.006) 1px, transparent 1px);
  background-size: 48px 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 420px;
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-expo), filter 0.5s;
  filter: grayscale(15%) contrast(1.08) saturate(0.92);
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) contrast(1) saturate(1.25);
}

.gallery-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1.75rem;
  background: linear-gradient(0deg, rgba(5,5,7,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-expo);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  text-shadow: 0 0 25px rgba(255,42,109,0.7);
  transform: translateY(14px);
  transition: transform 0.4s var(--ease-spring);
  letter-spacing: 0.04em;
  display: block;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* =====================================================
   FINAL CTA
   ===================================================== */
.finalize-section {
  padding: 10rem 0;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}
.finalize-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(255,0,60,0.06) 0%, transparent 65%);
  animation: fin-pulse 4.5s ease-in-out infinite alternate;
}
@keyframes fin-pulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1.2; }
}

.finalize-content { position: relative; z-index: 1; }
.finalize-title { font-size: clamp(2.8rem, 6vw, 5.5rem); margin-bottom: 1.25rem; }
.finalize-section .section-desc { margin: 0 auto 3.5rem; }
.finalize-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #030305;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 42px; margin-bottom: 1rem; filter: grayscale(100%) opacity(0.65); transition: filter 0.35s; }
.footer-brand:hover .footer-logo { filter: grayscale(0%) opacity(1); }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1.25rem; }
.social-link { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); transition: color 0.2s; }
.social-link:hover { color: var(--pink); }

.footer-col h4 { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em; color: var(--text); margin-bottom: 1.2rem; }
.footer-col p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.85; }

.footer-link { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-link:hover { color: var(--text); }
.footer-wa:hover { color: var(--green); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.76rem; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.stagger-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.stagger-up.visible { opacity: 1; transform: translateY(0); }

.reveal-zoom {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
  transition-delay: var(--rd, 0s);
}
.reveal-zoom.visible { opacity: 1; transform: scale(1); }

/* Hard fallback: if JS never fires, show everything after 2s */
@keyframes fallback-show { to { opacity: 1; transform: none; filter: none; } }
.no-js .fade-up,
.no-js .fade-right,
.no-js .stagger-up,
.no-js .reveal-zoom {
  animation: fallback-show 0s 2s both;
}

/* Hero kinetic entrance — CSS-driven, no JS required */
@keyframes kinetic-reveal {
  from { opacity: 0; transform: translateY(50px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
.kinetic-in {
  animation: kinetic-reveal 0.9s var(--ease-expo) both;
  animation-delay: var(--kd, 0.25s);
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(3rem, 12vw, 6rem); }
  .section { padding: 5rem 0; }
  .attitude-section { padding: 6rem 0; }
  .finalize-section { padding: 6rem 0; }
}
