/* Premium Design System */
:root {
  /* Brand Colors - Premium Chai Palette */
  --primary-brown: #8B4513;
  --secondary-brown: #A0522D;
  --tertiary-brown: #CD853F;
  --warm-orange: #FF8C42;
  --cream: #F5E6D3;
  --warm-white: #FEFCF7;
  --dark-brown: #654321;
  --accent-gold: #D4AF37;
  --sage-green: #9CAF88;
  
  /* Extended Color System */
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-400: #A3A3A3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  /* Premium Typography */
  --font-display: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-accent: 'Cabinet Grotesk', system-ui, sans-serif;
  
  /* Modern Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Smooth Transitions */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition-fast: 0.15s var(--ease-out-quart);
  --transition-medium: 0.3s var(--ease-out-quart);
  --transition-slow: 0.6s var(--ease-out-expo);
  
  /* Modern Border Radius */
  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Premium Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--warm-white);
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

/* Modern Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
  color: var(--warm-white);
}

.chai-cup {
  font-size: 4rem;
  margin-bottom: var(--space-6);
  animation: gentleBounce 2s ease-in-out infinite;
}

.loading-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  opacity: 0.9;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes gentleBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Premium Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(254, 252, 247, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(139, 69, 19, 0.08);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(254, 252, 247, 0.95);
  border-bottom-color: rgba(139, 69, 19, 0.12);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 1001;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-medium);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
  letter-spacing: -0.025em;
}

.nav-menu {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-700);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
}

.nav-link:hover {
  color: var(--primary-brown);
  background: rgba(139, 69, 19, 0.04);
}

.nav-link.active {
  color: var(--primary-brown);
  background: rgba(139, 69, 19, 0.08);
}

/* Remove the problematic border animation */
.nav-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  z-index: 1001;
}

.nav-toggle:hover {
  background: rgba(139, 69, 19, 0.08);
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--primary-brown);
  transition: all var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Premium Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-white) 0%, rgba(245, 230, 211, 0.3) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 20s infinite ease-in-out;
  opacity: 0.1;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-brown);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--tertiary-brown);
  top: 50%;
  left: 80%;
  animation-delay: -5s;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatParticle var(--duration) infinite ease-in-out;
  animation-delay: var(--delay);
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
}

.particle:nth-child(4) {
  top: 40%;
  right: 30%;
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-20);
  align-items: center;
}

.hero-main {
  animation: slideInUp 0.8s var(--ease-out-expo);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.12);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-brown);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  animation: slideInUp 0.8s var(--ease-out-expo) 0.1s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-brown);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
  color: var(--neutral-900);
}

.title-primary,
.title-secondary {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: slideInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.title-highlight {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.title-secondary {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--neutral-600);
  animation-delay: 0.4s;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--neutral-600);
  max-width: 560px;
  margin-bottom: var(--space-10);
  animation: slideInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: slideInUp 0.8s var(--ease-out-expo) 0.6s both;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-brown);
  color: var(--warm-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-brown);
  border: 2px solid rgba(139, 69, 19, 0.2);
}

.btn-secondary:hover {
  background: rgba(139, 69, 19, 0.08);
  border-color: rgba(139, 69, 19, 0.3);
  transform: translateY(-1px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform var(--transition-medium);
}

.btn-primary:hover .btn-icon {
  transform: translateX(2px);
}

.btn-secondary .btn-icon {
  background: rgba(139, 69, 19, 0.1);
  color: var(--primary-brown);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  animation: slideInUp 0.8s var(--ease-out-expo) 0.7s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(139, 69, 19, 0.15);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideInRight 1s var(--ease-out-expo) 0.4s both;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
}

.chai-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chai-scene {
  position: relative;
  width: 350px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gentleFloat 8s ease-in-out infinite;
}

/* Beautiful Kulhad Cup SVG */
.kulhad-cup {
  position: relative;
  z-index: 3;
}

.cup-svg {
  width: 200px;
  height: 240px;
  filter: drop-shadow(0 8px 25px rgba(139, 69, 19, 0.3));
  animation: cupGlow 4s ease-in-out infinite;
}

.steam-line {
  animation: steamRise 3s ease-in-out infinite;
  opacity: 0.8;
}

/* Decorative Spice Icons */
.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.spice-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  opacity: 0.8;
  animation: floatSpice 6s ease-in-out infinite;
  filter: drop-shadow(0 3px 8px rgba(139, 69, 19, 0.2));
}

.spice-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.spice-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1.5s;
}

.spice-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}

.spice-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4.5s;
}

.icon-svg {
  width: 100%;
  height: 100%;
  animation: iconSpin 8s linear infinite;
}

/* Traditional Pattern Background */
.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.pattern-svg {
  width: 100%;
  height: 100%;
  animation: patternMove 20s linear infinite;
}

/* Chai Quote */
.chai-quote {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.quote-text {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary-brown);
  opacity: 0.8;
  font-style: italic;
  line-height: 1.4;
  animation: textFade 4s ease-in-out infinite;
}

.quote-text:first-child {
  animation-delay: 0s;
}

.quote-text:last-child {
  animation-delay: 2s;
}

/* Premium Animations */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

@keyframes cupGlow {
  0%, 100% {
    filter: drop-shadow(0 8px 25px rgba(139, 69, 19, 0.3));
  }
  50% {
    filter: drop-shadow(0 12px 35px rgba(139, 69, 19, 0.4)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-15px);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes floatSpice {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes patternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(0) translateY(-20px);
  }
  75% {
    transform: translateX(10px) translateY(-10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes textFade {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes gentleBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes liquidGentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes shimmerSoft {
  0%, 100% {
    opacity: 0.2;
    transform: translateX(0);
  }
  50% {
    opacity: 0.4;
    transform: translateX(3px);
  }
}

@keyframes steamFloat {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateY(-15px) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-25px) scale(1.1);
    opacity: 0;
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(2deg) scale(1.1);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg) scale(0.95);
  }
  75% {
    transform: translateY(-12px) rotate(3deg) scale(1.05);
  }
}

@keyframes aromaExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes steamRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(-15px) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0;
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes scrollLineMove {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

/* Premium Section Styling */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.section-tag {
  display: inline-block;
  background: rgba(139, 69, 19, 0.08);
  border: 1px solid rgba(139, 69, 19, 0.12);
  color: var(--primary-brown);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: var(--space-6);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  background: var(--neutral-50);
}

.about-content {
  margin-top: var(--space-16);
}

.about-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.story-card {
  background: var(--warm-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 69, 19, 0.08);
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card:hover::before {
  opacity: 1;
}

.story-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--warm-white);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
}

.story-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.story-card p {
  color: var(--neutral-600);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* Menu Section */
.menu {
  background: var(--warm-white);
}

.menu-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  margin-top: var(--space-16);
}

.menu-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.menu-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
}

.menu-image:hover .menu-img {
  transform: none; /* Remove hover transform to fix the bug */
}

.menu-overlay {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
}

.menu-badge {
  background: rgba(254, 252, 247, 0.9);
  backdrop-filter: blur(12px);
  color: var(--primary-brown);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.highlight-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: rgba(139, 69, 19, 0.04);
  border-radius: var(--radius-xl);
  transition: all var(--transition-medium);
  border: 1px solid rgba(139, 69, 19, 0.08);
}

.highlight-item:hover {
  transform: translateX(8px);
  background: rgba(139, 69, 19, 0.08);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--warm-white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.highlight-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.highlight-content p {
  color: var(--neutral-600);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* Premium Social Media Section */
.social-media {
  text-align: center;
}

.social-media h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-8);
  letter-spacing: -0.02em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: var(--warm-white);
  border: 2px solid rgba(139, 69, 19, 0.08);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition-medium);
  min-width: 350px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #f09433 0%, 
    #e6683c 25%, 
    #dc2743 50%, 
    #cc2366 75%, 
    #bc1888 100%);
  transition: left var(--transition-slow);
  z-index: 0;
}

.social-link:hover::before {
  left: 0;
}

.social-link:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.social-link:hover .social-icon,
.social-link:hover .social-content,
.social-link:hover .social-arrow {
  position: relative;
  z-index: 1;
  color: white;
}

.social-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #405de6, #e1306c);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.social-content {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 1;
}

.social-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--neutral-900);
  margin-bottom: var(--space-1);
  letter-spacing: -0.01em;
}

.social-handle {
  display: block;
  font-size: 1rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.social-arrow {
  width: 40px;
  height: 40px;
  background: rgba(139, 69, 19, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-brown);
  transition: all var(--transition-medium);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.social-link:hover .social-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px) rotate(-45deg);
}

/* Gallery Section */
.gallery {
  background: var(--neutral-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--neutral-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 2px dashed rgba(139, 69, 19, 0.2);
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), filter 0.5s var(--ease-out-expo);
  box-shadow: var(--shadow-md);
  will-change: transform, box-shadow, filter;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(139, 69, 19, 0.05), 
    rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(139, 69, 19, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.08) saturate(1.15) drop-shadow(0 8px 24px rgba(139,69,19,0.12));
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.03) 10px,
    rgba(139, 69, 19, 0.03) 20px
  );
}

.placeholder-overlay {
  text-align: center;
  padding: var(--space-6);
}

.placeholder-text {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary-brown);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.placeholder-subtitle {
  display: block;
  font-size: 0.9375rem;
  color: var(--neutral-600);
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: var(--warm-white);
}

.contact-content {
  margin-top: var(--space-16);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

.contact-card {
  background: rgba(139, 69, 19, 0.04);
  border: 1px solid rgba(139, 69, 19, 0.08);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.contact-card:hover {
  transform: translateY(-4px);
  background: var(--warm-white);
  box-shadow: var(--shadow-lg);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--warm-white);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.contact-card:hover .contact-icon {
  transform: scale(1.05);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.contact-card p {
  color: var(--neutral-600);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* Premium Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  color: var(--warm-white);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 69, 19, 0.3) 20%, 
    rgba(212, 175, 55, 0.5) 50%, 
    rgba(139, 69, 19, 0.3) 80%, 
    transparent 100%);
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-20);
  margin-bottom: var(--space-16);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--warm-white);
}

.footer-description {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(254, 252, 247, 0.8);
  margin-bottom: var(--space-8);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social-link {
  width: 48px;
  height: 48px;
  background: rgba(139, 69, 19, 0.2);
  border: 1px solid rgba(139, 69, 19, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all var(--transition-medium);
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--space-3);
}

.footer-section a {
  color: rgba(254, 252, 247, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-section a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-section li:not(:has(a)) {
  color: rgba(254, 252, 247, 0.7);
  font-size: 0.9375rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(139, 69, 19, 0.2);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-text {
  opacity: 0.8;
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-text i {
  color: #ef4444;
  margin: 0 var(--space-1);
  animation: heartBeat 2s ease-in-out infinite;
}

.footer-badge {
  background: rgba(139, 69, 19, 0.2);
  border: 1px solid rgba(139, 69, 19, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(254, 252, 247, 0.9);
}

@keyframes heartBeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.1);
  }
}

/* Premium Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .visual-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .menu-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  
  .menu-image {
    order: -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --space-32: 6rem;
    --space-24: 4rem;
    --space-20: 3rem;
  }
  
  .container {
    padding: 0 var(--space-5);
  }
  
  .nav-container {
    padding: 0 var(--space-5);
  }
  
  /* Fix hero section alignment for tablets */
  .hero-content {
    padding: 0 var(--space-6);
    gap: var(--space-12);
  }
  
  .hero-main {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  
  .hero-actions {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto var(--space-10);
  }
  
  /* Fix visual container for tablets */
  .visual-container {
    max-width: 350px;
  }
  
  .chai-scene {
    width: 280px;
    height: 320px;
  }
  
  .cup-svg {
    width: 160px;
    height: 190px;
  }
  
  .spice-icon {
    width: 28px;
    height: 28px;
  }
  
  .chai-quote {
    bottom: -40px;
  }
  
  .quote-text {
    font-size: 0.875rem;
  }

  .social-link {
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Fix footer for tablets */
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}

@media (max-width: 768px) {
  :root {
    --space-32: 4rem;
    --space-24: 3rem;
    --space-20: 2.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(254, 252, 247, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-8) var(--space-6);
    transition: left var(--transition-medium);
    gap: var(--space-6);
    border-right: 1px solid rgba(139, 69, 19, 0.12);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }
  
  .nav-link {
    font-size: 1.25rem;
    padding: var(--space-4) var(--space-6);
    width: 100%;
    text-align: center;
    border-radius: var(--radius-lg);
  }

  .hero {
    min-height: 90vh;
    padding-top: 100px;
  }
  
  .hero-content {
    padding: 0 var(--space-4);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
  
  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    justify-content: center;
  }

  .visual-container {
    max-width: 300px;
  }
  
  .chai-scene {
    width: 250px;
    height: 280px;
  }
  
  .cup-svg {
    width: 140px;
    height: 170px;
  }
  
  .spice-icon {
    width: 24px;
    height: 24px;
  }
  
  .chai-quote {
    bottom: -35px;
  }
  
  .quote-text {
    font-size: 0.8125rem;
  }

  .about-text {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .social-link {
    min-width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  section {
    padding: var(--space-20) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-16);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-6);
  }
  
  .footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  .footer-section li {
    margin-bottom: 0;
  }
  
  .footer-info {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  :root {
    --space-32: 3rem;
    --space-24: 2rem;
    --space-20: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-3);
  }
  
  .nav-container {
    padding: 0 var(--space-3);
    height: 70px;
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
    padding: var(--space-6) var(--space-4);
  }

  .hero {
    padding-top: 80px;
    min-height: 85vh;
  }

  .hero-badge {
    font-size: 0.8125rem;
    padding: var(--space-2) var(--space-3);
  }
  
  .visual-container {
    max-width: 250px;
  }
  
  .chai-scene {
    width: 220px;
    height: 250px;
  }
  
  .cup-svg {
    width: 120px;
    height: 145px;
  }
  
  .spice-icon {
    width: 20px;
    height: 20px;
  }
  
  .chai-quote {
    bottom: -30px;
  }
  
  .quote-text {
    font-size: 0.75rem;
  }

  .story-card,
  .highlight-item,
  .contact-card {
    padding: var(--space-6);
  }

  .menu-img {
    min-height: 300px;
    max-height: 450px;
  }
  
  .social-link {
    min-width: 100%;
    max-width: 100%;
    padding: var(--space-5) var(--space-6);
  }
  
  .social-icon {
    width: 48px;
    height: 48px;
  }
  
  .hero-actions {
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-main {
    gap: var(--space-8);
  }
}

/* Enhanced Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-particles,
  .gradient-orb,
  .steam-line,
  .floating-icons {
    display: none;
  }
}

@media (prefers-contrast: high) {
  :root {
    --primary-brown: #000000;
    --secondary-brown: #333333;
    --dark-brown: #000000;
    --warm-white: #ffffff;
    --neutral-50: #ffffff;
    --neutral-100: #f5f5f5;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-visual,
  .floating-particles,
  .gradient-orb,
  .scroll-indicator,
  .loading-screen,
  .social-links {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  section {
    padding: var(--space-8) 0;
    break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}