/* ============================================
   BRÛLÉ COFFEE — 3D Stylesheet
   Palette: Terracotta Studio + Dark Roast
   Fonts: Cormorant Garamond + Bricolage Grotesque
============================================ */

:root {
  --cream: #F2E6D9;
  --terracotta: #B5563E;
  --terra-light: #D4896A;
  --dark: #1A0A00;
  --dark-mid: #3D2B1F;
  --gold: #C9956B;
  --white: #FAF7F4;
  --text-muted: #8B6B55;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  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='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--terra-light);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(26,10,0,0.95), transparent);
  backdrop-filter: blur(8px);
  transition: background 0.4s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.75; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--terra-light); color: var(--terra-light);
  padding: 0.6rem 1.4rem; border-radius: 2px;
  cursor: none; transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, #3D1A0A 0%, #1A0A00 60%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(181,86,62,0.15) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--cream);
  display: flex; flex-direction: column;
}
.hero-title .line {
  display: block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 0.9s forwards;
}
.hero-title .l1 { animation-delay: 0.5s; }
.hero-title .l2 { animation-delay: 0.7s; color: var(--terra-light); }
.hero-title .l3 { animation-delay: 0.9s; }
.hero-title .italic { font-style: italic; }

.hero-sub {
  margin-top: 1.5rem; font-size: 1rem; line-height: 1.7;
  color: var(--text-muted); max-width: 400px;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 1.3s forwards;
}

.btn-primary {
  background: var(--terracotta); color: var(--white);
  border: none; padding: 0.9rem 2rem;
  font-family: var(--font-body); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(181,86,62,0.3);
}
.btn-primary:hover {
  background: #C96040;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181,86,62,0.5);
}
.btn-primary.large { padding: 1.1rem 2.5rem; font-size: 0.9rem; }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(242,230,217,0.3);
  padding: 0.9rem 2rem;
  font-family: var(--font-body); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: none; border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--cream); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 4rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0; animation: fadeUp 0.8s 1.8s forwards;
}
.scroll-line {
  width: 60px; height: 1px; background: var(--text-muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--terra-light);
  animation: scrollLine 2s 2s infinite;
}

/* ── 3D COFFEE SCENE ── */
.hero-scene {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 500px;
  perspective: 1000px;
}

.coffee-world {
  position: relative; width: 300px; height: 300px;
  transform-style: preserve-3d;
  animation: floatWorld 6s ease-in-out infinite;
}

.cup-wrapper {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

/* 3D Cup */
.cup-3d {
  width: 120px; height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(20deg);
  animation: cupRotate 8s ease-in-out infinite;
}

.cup-face {
  position: absolute;
  background: linear-gradient(135deg, #D4896A, #B5563E);
  border: 1px solid rgba(255,255,255,0.1);
}

.cup-front  { width: 120px; height: 100px; transform: translateZ(40px); border-radius: 0 0 20px 20px; background: linear-gradient(160deg, #C97050 0%, #8B3A20 100%); }
.cup-back   { width: 120px; height: 100px; transform: rotateY(180deg) translateZ(40px); border-radius: 0 0 20px 20px; background: #6B2A10; }
.cup-left   { width: 80px; height: 100px; transform: rotateY(-90deg) translateZ(40px); border-radius: 0 0 10px 10px; background: linear-gradient(to right, #7B3020, #A04030); }
.cup-right  { width: 80px; height: 100px; transform: rotateY(90deg) translateZ(80px); border-radius: 0 0 10px 10px; background: linear-gradient(to right, #A04030, #7B3020); }
.cup-top    { width: 120px; height: 80px; transform: rotateX(90deg) translateZ(0px); background: #2C1810; border-radius: 50%; overflow: hidden; }
.cup-bottom { width: 100px; height: 60px; transform: rotateX(-90deg) translateZ(-100px) translateX(10px) translateY(10px); background: #3D1A0A; border-radius: 50%; }

.coffee-liquid {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse, #4A2010 0%, #2C1005 100%);
  border-radius: 50%;
  position: relative; overflow: hidden;
}
.coffee-foam {
  position: absolute; top: 10%; left: 10%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, #C8956A 0%, #A07040 60%, transparent 100%);
  border-radius: 50%;
  animation: foamPulse 3s ease-in-out infinite;
}
.latte-art {
  position: absolute; top: 20%; left: 20%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(255,220,180,0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.cup-handle {
  position: absolute; right: -25px; top: 20px;
  width: 30px; height: 50px;
  border: 8px solid #8B3A20;
  border-left: none;
  border-radius: 0 30px 30px 0;
  transform: translateZ(40px);
}

.cup-saucer {
  position: absolute; bottom: -15px; left: -20px;
  width: 160px; height: 20px;
  background: linear-gradient(to bottom, #C97050, #8B3A20);
  border-radius: 50%;
  transform: rotateX(80deg) translateZ(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Steam */
.steam-container {
  position: absolute; top: -60px; left: 30px;
  display: flex; gap: 15px;
}
.steam {
  width: 4px; height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0.4), transparent);
  border-radius: 4px;
  animation: steamRise 2s ease-in-out infinite;
}
.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.4s; height: 55px; }
.s3 { animation-delay: 0.8s; }

/* Floating Beans */
.bean {
  position: absolute;
  width: 20px; height: 12px;
  background: radial-gradient(ellipse, #6B3A1F, #3D1A0A);
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.bean::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 2px;
  background: rgba(0,0,0,0.4);
  border-radius: 2px;
}
.b1 { top: 10%; left: 5%; animation: beanFloat 4s 0s ease-in-out infinite; transform: rotate(20deg); }
.b2 { top: 20%; right: 5%; animation: beanFloat 5s 0.5s ease-in-out infinite; transform: rotate(-30deg); }
.b3 { bottom: 15%; left: 10%; animation: beanFloat 4.5s 1s ease-in-out infinite; transform: rotate(45deg); }
.b4 { bottom: 25%; right: 8%; animation: beanFloat 3.5s 1.5s ease-in-out infinite; transform: rotate(-15deg); }
.b5 { top: 50%; left: -5%; animation: beanFloat 5.5s 0.8s ease-in-out infinite; transform: rotate(60deg); }

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--terra-light);
  opacity: 0.4;
}
.p1 { width: 6px; height: 6px; top: 5%; left: 30%; animation: particleDrift 6s 0s infinite; }
.p2 { width: 4px; height: 4px; top: 15%; right: 20%; animation: particleDrift 7s 1s infinite; }
.p3 { width: 8px; height: 8px; bottom: 10%; left: 25%; animation: particleDrift 5s 2s infinite; }
.p4 { width: 3px; height: 3px; bottom: 20%; right: 15%; animation: particleDrift 8s 0.5s infinite; }
.p5 { width: 5px; height: 5px; top: 40%; left: 0%; animation: particleDrift 6.5s 1.5s infinite; }
.p6 { width: 7px; height: 7px; top: 60%; right: 0%; animation: particleDrift 5.5s 2.5s infinite; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--terracotta);
  padding: 0.9rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white);
}
.marquee-track span { flex-shrink: 0; }

/* ── SECTION COMMON ── */
.section-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-light); display: block; margin-bottom: 1rem;
}
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header h2, .about-content h2, .visit-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream);
}
.section-header h2 em, .about-content h2 em, .visit-content h2 em {
  font-style: italic; color: var(--terra-light);
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 8rem 4rem;
  background: linear-gradient(to bottom, var(--dark), #2A1008);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  position: relative;
  background: linear-gradient(135deg, rgba(61,43,31,0.8), rgba(26,10,0,0.9));
  border: 1px solid rgba(181,86,62,0.2);
  border-radius: 4px;
  padding: 2rem;
  cursor: none;
  transition: transform 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.menu-card:hover {
  border-color: rgba(181,86,62,0.6);
  transform: translateY(-8px) rotateX(3deg);
}
.menu-card.featured {
  border-color: rgba(181,86,62,0.5);
  background: linear-gradient(135deg, rgba(90,40,20,0.9), rgba(50,20,5,0.95));
}

.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card-temp {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 0.5rem;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.75rem;
}
.menu-card p {
  font-size: 0.85rem; line-height: 1.6;
  color: var(--text-muted);
}
.card-price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--terra-light);
}
.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--terracotta); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px;
}
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(181,86,62,0.15), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.menu-card:hover .card-glow { opacity: 1; }

/* ── ABOUT SECTION ── */
.about-section {
  padding: 8rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  background: #0F0500;
  position: relative; overflow: hidden;
}

.about-3d-scene {
  position: relative; height: 400px;
  display: flex; align-items: center; justify-content: center;
}

.rotating-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(181,86,62,0.3);
  animation: ringRotate 10s linear infinite;
}
.ring1 { width: 200px; height: 200px; animation-duration: 8s; }
.ring2 { width: 300px; height: 300px; animation-duration: 12s; animation-direction: reverse; border-color: rgba(212,137,106,0.2); }
.ring3 { width: 380px; height: 380px; animation-duration: 18s; border-color: rgba(181,86,62,0.1); }

.about-orb {
  width: 120px; height: 120px;
  background: radial-gradient(ellipse, var(--terracotta), #6B2010);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(181,86,62,0.4), 0 0 120px rgba(181,86,62,0.2);
  animation: orbPulse 4s ease-in-out infinite;
}

.about-content p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 1.2rem;
}

.about-stats {
  display: flex; gap: 3rem; margin-top: 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  color: var(--terra-light); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem;
}

/* ── AMBIANCE SECTION ── */
.ambiance-section {
  padding: 8rem 4rem;
  background: linear-gradient(to bottom, #0F0500, var(--dark-mid));
}

.ambiance-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem; height: 400px;
}

.amb-card {
  border-radius: 4px; overflow: hidden;
  position: relative; cursor: none;
  transition: transform 0.4s;
}
.amb-card:hover { transform: scale(1.02); }

.amb-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.amb-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  padding: 0.4rem 0.8rem; border-radius: 2px;
}

/* 3D Shelf */
.shelf-3d {
  position: relative; width: 160px; height: 40px;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(-15deg);
}
.shelf-face { position: absolute; }
.sf-top    { width: 160px; height: 20px; background: #8B4513; transform: rotateX(90deg) translateZ(10px); }
.sf-front  { width: 160px; height: 10px; background: #6B3010; top: 30px; }
.sf-bottom { width: 160px; height: 20px; background: #5A2808; transform: rotateX(-90deg) translateZ(-10px); }
.shelf-item {
  position: absolute; bottom: 10px;
  width: 20px; height: 50px;
  background: linear-gradient(to top, #3D1A0A, #8B4513);
  border-radius: 2px;
}
.si1 { left: 20px; height: 60px; }
.si2 { left: 50px; height: 45px; }
.si3 { left: 80px; height: 55px; }

/* 3D Window */
.window-3d { transform-style: preserve-3d; }
.window-frame {
  width: 100px; height: 130px;
  border: 6px solid #8B6040;
  position: relative;
  transform: rotateY(-10deg);
  box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
}
.window-pane {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,220,150,0.3), rgba(255,180,80,0.1));
}
.window-light {
  position: absolute; top: -20px; left: -20px;
  width: 140px; height: 170px;
  background: radial-gradient(ellipse, rgba(255,200,100,0.2), transparent 70%);
  pointer-events: none;
}

/* 3D Table */
.table-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(15deg);
}
.table-top {
  width: 120px; height: 80px;
  background: linear-gradient(135deg, #8B4513, #5C2E0A);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.table-leg {
  position: absolute; bottom: -40px;
  width: 8px; height: 40px;
  background: #5C2E0A;
}
.tl1 { left: 10px; }
.tl2 { right: 10px; }
.mini-cup {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 18px;
  background: linear-gradient(to bottom, #C97050, #8B3A20);
  border-radius: 0 0 8px 8px;
}

/* ── VISIT SECTION ── */
.visit-section {
  padding: 8rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  background: #0A0300;
}

.visit-info {
  display: flex; flex-direction: column; gap: 2rem;
  margin: 2.5rem 0;
}
.info-block {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.info-icon { font-size: 1.3rem; margin-top: 0.1rem; }
.info-block strong {
  display: block; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 0.3rem;
}
.info-block p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); }

/* 3D Map Cube */
.visit-3d-map {
  display: flex; align-items: center; justify-content: center;
  perspective: 800px; height: 350px;
}
.map-cube {
  width: 220px; height: 220px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: cubeRotate 12s linear infinite;
}
.cube-face {
  position: absolute; width: 220px; height: 220px;
  border: 1px solid rgba(181,86,62,0.3);
  backface-visibility: hidden;
}
.cf-front  { background: linear-gradient(135deg, #2A1008, #3D1A0A); transform: translateZ(110px); }
.cf-back   { background: #1A0800; transform: rotateY(180deg) translateZ(110px); }
.cf-left   { background: #200E04; transform: rotateY(-90deg) translateZ(110px); }
.cf-right  { background: #200E04; transform: rotateY(90deg) translateZ(110px); }
.cf-top    { background: linear-gradient(135deg, #3D1A0A, #5C2E0A); transform: rotateX(90deg) translateZ(110px); }
.cf-bottom { background: #150700; transform: rotateX(-90deg) translateZ(110px); }

.map-pin { font-size: 2rem; position: absolute; top: 30%; left: 50%; transform: translateX(-50%); }
.map-label {
  position: absolute; top: 55%; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 1rem;
  color: var(--terra-light); white-space: nowrap;
}
.map-roads { position: absolute; inset: 0; }
.road {
  position: absolute; background: rgba(181,86,62,0.2);
}
.r1 { width: 100%; height: 2px; top: 70%; }
.r2 { width: 2px; height: 100%; left: 30%; }
.r3 { width: 2px; height: 100%; left: 70%; }

/* ── FOOTER ── */
.footer {
  background: #050100;
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(181,86,62,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  color: var(--cream); margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); }
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.fl-col { display: flex; flex-direction: column; gap: 0.8rem; }
.fl-col strong {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 0.3rem;
}
.fl-col a {
  font-size: 0.85rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.fl-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem; color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatWorld {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}
@keyframes cupRotate {
  0%, 100% { transform: rotateX(-15deg) rotateY(20deg); }
  50% { transform: rotateX(-10deg) rotateY(-10deg); }
}
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scaleX(1.5); opacity: 0.3; }
  100% { transform: translateY(-40px) scaleX(0.5); opacity: 0; }
}
@keyframes beanFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 20deg)); }
  50% { transform: translateY(-15px) rotate(calc(var(--r, 20deg) + 20deg)); }
}
@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  33% { transform: translate(10px, -15px); opacity: 0.7; }
  66% { transform: translate(-8px, -8px); opacity: 0.3; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ringRotate {
  from { transform: rotateZ(0deg) rotateX(70deg); }
  to { transform: rotateZ(360deg) rotateX(70deg); }
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(181,86,62,0.4), 0 0 120px rgba(181,86,62,0.2); transform: scale(1); }
  50% { box-shadow: 0 0 80px rgba(181,86,62,0.6), 0 0 160px rgba(181,86,62,0.3); transform: scale(1.05); }
}
@keyframes foamPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes cubeRotate {
  from { transform: rotateX(-20deg) rotateY(30deg); }
  to { transform: rotateX(-20deg) rotateY(390deg); }
}
@keyframes scrollLine {
  from { left: -100%; }
  to { left: 100%; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; }
  .hero-scene { display: none; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-3d-scene { height: 250px; }
  .visit-section { grid-template-columns: 1fr; }
  .ambiance-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .amb-card.large { grid-column: span 2; height: 250px; }
  .amb-card { height: 200px; }
}
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .menu-section, .about-section, .visit-section, .ambiance-section { padding: 5rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .about-stats { gap: 1.5rem; }
}