/* ════════════════════════════════════════════
   NAMMA TEA KADAI – style.css
   Aesthetic: Cinematic dark-luxury Tamil café
   Palette: Deep forest green · warm gold · black velvet
   ════════════════════════════════════════════ */

/* ── VARIABLES ────────────────────────────── */
:root {
  --green-deep:   #0a1a0e;
  --green-dark:   #122318;
  --green-mid:    #1a3525;
  --green-soft:   #254d37;
  --green-light:  #3a7a56;
  --gold:         #c8952a;
  --gold-bright:  #e8b94a;
  --gold-pale:    #f5d98a;
  --cream:        #f8f0dc;
  --warm-white:   #fdf6e8;
  --tea-brown:    #7a4a1e;
  --smoke:        rgba(255,255,255,0.06);
  --font-display: 'Playfair Display', serif;
  --font-tamil:   'Noto Serif Tamil', serif;
  --font-body:    'Lato', sans-serif;
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-gold:  0 0 40px rgba(200, 149, 42, 0.25);
  --shadow-green: 0 0 60px rgba(58, 122, 86, 0.2);
  --radius:       16px;
  --radius-lg:    24px;
}

/* Evening mode */
body.evening {
  --green-deep:  #0d0e0a;
  --green-dark:  #1a1208;
  --green-mid:   #2a1e0a;
  --green-soft:  #3d2b10;
  --green-light: #6b4a1a;
  --gold:        #d4a030;
  --gold-bright: #f0c050;
}

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CUSTOM CURSOR ───────────────────────── */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--gold-bright); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.15s var(--ease-smooth), top 0.15s var(--ease-smooth), width 0.3s, height 0.3s;
}
.cursor.expand { width: 20px; height: 20px; }

/* ── LOADING ─────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--green-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-cup {
  display: flex; flex-direction: column;
  align-items: center; margin-bottom: 24px;
  animation: loaderFloat 2s ease-in-out infinite;
}
@keyframes loaderFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.cup-body {
  width: 70px; height: 54px;
  background: var(--green-soft);
  border-radius: 0 0 28px 28px;
  border: 2px solid var(--gold);
  position: relative; overflow: hidden;
}
.cup-liquid {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; background: var(--gold);
  border-radius: 0 0 26px 26px;
  animation: liquidSlosh 2s ease-in-out infinite;
}
@keyframes liquidSlosh { 0%,100%{height:55%} 50%{height:65%} }
.cup-steam { position: absolute; top: -24px; width: 4px; border-radius: 99px; }
.cup-steam.s1 { left: 18px; animation: steamRise 1.8s ease-out infinite; }
.cup-steam.s2 { left: 32px; animation: steamRise 1.8s ease-out 0.4s infinite; }
.cup-steam.s3 { left: 46px; animation: steamRise 1.8s ease-out 0.8s infinite; }
@keyframes steamRise {
  0% { height: 0; opacity: 0.8; background: rgba(255,255,255,0.5); }
  100% { height: 30px; opacity: 0; background: rgba(255,255,255,0); transform: translateX(6px); }
}
.cup-saucer {
  width: 90px; height: 10px;
  background: var(--gold);
  border-radius: 50%; margin-top: -2px;
  opacity: 0.7;
}
.loader-text {
  color: var(--gold-pale);
  font-family: var(--font-tamil); font-size: 1.1rem;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

/* ── PARTICLES ───────────────────────────── */
.particles-container {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; font-size: clamp(12px, 2vw, 20px);
  opacity: 0; animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10,26,14,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(200,149,42,0.12);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  margin-right: auto;
}
.logo-tamil {
  font-family: var(--font-tamil); font-size: 1.5rem; font-weight: 700;
  color: var(--gold-bright); letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 0.25em; color: var(--gold-pale);
  text-transform: uppercase; margin-top: 2px;
}
.nav-links {
  list-style: none; display: flex; gap: 8px;
}
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); padding: 8px 14px; border-radius: 8px;
  transition: all 0.3s; font-weight: 400;
}
.nav-links a:hover { color: var(--gold-bright); background: var(--smoke); }
.mood-toggle {
  background: var(--smoke); border: 1px solid rgba(200,149,42,0.2);
  color: var(--gold-pale); width: 40px; height: 40px;
  border-radius: 50%; cursor: none; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.mood-toggle:hover { border-color: var(--gold); background: rgba(200,149,42,0.15); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-pale); border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: none;
  transition: all 0.35s var(--ease-spring); border: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  border-radius: inherit;
}
.btn:hover::after { transform: scaleX(1); }
.btn-gold { background: var(--gold); color: #0a1a0e; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(248,240,220,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn-gold-sm {
  background: var(--gold); color: #0a1a0e;
  padding: 10px 22px; font-size: 0.8rem; border-radius: 50px;
  font-weight: 700; cursor: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.3s var(--ease-spring); border: none;
}
.btn-gold-sm:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-outline-sm {
  background: transparent; color: var(--cream);
  padding: 12px 24px; font-size: 0.85rem; border-radius: 50px;
  border: 1.5px solid rgba(248,240,220,0.4); font-weight: 700;
  cursor: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.3s; display: inline-flex; align-items: center;
}
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa {
  background: #25d366; color: #fff;
  padding: 14px 28px; font-size: 0.85rem; border-radius: 50px;
  font-weight: 700; cursor: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.3s var(--ease-spring); border: none;
  display: inline-flex; align-items: center;
}
.btn-wa:hover { background: #1fba57; transform: translateY(-2px); }

/* ── LAYOUT UTILS ────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { position: relative; z-index: 1; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--warm-white);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { color: rgba(248,240,220,0.7); margin-top: 16px; max-width: 600px; }
.section-head { text-align: center; margin-bottom: 60px; }

/* ── SCROLL REVEAL ───────────────────────── */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-2 { transition-delay: 0.15s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealUp 0.8s var(--ease-smooth) forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════
   LOGO (updated)
════════════════════════════════ */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-cup-icon { flex-shrink: 0; }
.logo-steam { stroke-dasharray: 16; stroke-dashoffset: 16; animation: steamDraw 2s ease-out infinite; }
.ls1 { animation-delay: 0s; } .ls2 { animation-delay: 0.4s; } .ls3 { animation-delay: 0.8s; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-tamil {
  font-family: var(--font-tamil); font-size: 1.15rem; font-weight: 700;
  color: var(--gold-bright); letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body); font-size: 0.52rem;
  letter-spacing: 0.28em; color: var(--gold-pale);
  text-transform: uppercase; margin-top: 2px;
}

/* ════════════════════════════════
   HERO — New Design (matching reference)
════════════════════════════════ */
.hero {
  height: 100vh; min-height: 700px;
  display: grid; grid-template-columns: 55% 45%;
  align-items: center; position: relative;
  /* overflow must NOT clip the right column — use clip-path instead for bg */
}
/* Clip only the background, not the grid children */
.hero::before {
  content: ''; position: absolute; inset: 0;
  z-index: 0; overflow: hidden; pointer-events: none;
}

/* Background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; /* bg clips here, not the whole hero */
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 90% at 15% 55%, rgba(14,30,18,0.98) 0%, rgba(8,18,10,0.85) 55%, transparent 80%),
    radial-gradient(ellipse 70% 80% at 75% 45%, rgba(60,30,10,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #060e08 0%, #0d1a10 40%, #0a120c 70%, #050808 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  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.45;
}
/* Bokeh light spots */
.hero-bokeh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bokeh {
  position: absolute; border-radius: 50%;
  filter: blur(40px); animation: bokehFloat ease-in-out infinite;
}
.b1 { width:180px;height:180px;background:rgba(200,146,30,0.12);top:20%;right:25%;animation-duration:8s;animation-delay:0s; }
.b2 { width:120px;height:120px;background:rgba(100,60,10,0.18);top:55%;right:15%;animation-duration:10s;animation-delay:2s; }
.b3 { width:90px;height:90px;background:rgba(200,146,30,0.08);bottom:20%;right:40%;animation-duration:7s;animation-delay:1s; }
.b4 { width:60px;height:60px;background:rgba(255,180,30,0.1);top:35%;right:55%;animation-duration:12s;animation-delay:3s; }
.b5 { width:200px;height:200px;background:rgba(30,60,20,0.15);bottom:10%;left:50%;animation-duration:9s;animation-delay:4s; }
@keyframes bokehFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(10px,-15px) scale(1.1)} 66%{transform:translate(-8px,8px) scale(0.95)} }
/* Cinematic sweep light */
.hero-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: conic-gradient(from 210deg at 80% 45%, transparent 0deg, rgba(200,146,30,0.04) 25deg, transparent 50deg);
  animation: sweepRotate 20s linear infinite;
}
@keyframes sweepRotate { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* Canvas layer */
.hero-canvas-layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* ── LEFT CONTENT ── */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 40px 0 max(5%, calc((100vw - 1200px) / 2 + 24px));
  /* left padding = page margin; right padding = gap to cup column */
}

/* Big Tamil tagline — primary headline matching reference image */
.hero-tagline-block { margin-bottom: 20px; }
.hero-tagline-line1 {
  font-family: var(--font-tamil); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--gold-lt);
  line-height: 1.2; margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(200,149,42,0.5);
  animation: revealUp 0.8s var(--ease-smooth) both;
}
.hero-tagline-line2 {
  font-family: var(--font-tamil); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; color: var(--warm-white); line-height: 1.1;
  text-shadow: 0 0 60px rgba(200,149,42,0.3);
}
.heart-inline {
  color: #e05050; display: inline-block;
  animation: heartPump 1.4s ease-in-out infinite;
}
@keyframes heartPump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }

/* "GOOD TEA • GOOD TALKS • GREAT MEMORIES" */
.hero-subtitle {
  font-family: var(--font-body); font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248,240,220,0.65); margin-bottom: 20px;
}

/* Location chip */
.hero-location {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(248,240,220,0.55);
  letter-spacing: 0.06em; margin-bottom: 32px;
}
.hl-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: dotPulse 2s ease-in-out infinite; flex-shrink: 0;
}

/* CTA buttons — style matching the image (outline + solid) */
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-outline {
  background: transparent; color: var(--warm-white);
  border: 1.5px solid var(--gold); padding: 13px 32px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: none;
  transition: all 0.3s var(--ease-spring);
  font-family: var(--font-body); text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-hero-outline:hover { background: var(--gold); color: #0a1a0e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,42,0.35); }
.btn-hero-solid {
  background: var(--ink); color: var(--warm-white);
  border: 1.5px solid rgba(248,240,220,0.3); padding: 13px 32px;
  border-radius: 6px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: none;
  transition: all 0.3s var(--ease-spring);
  font-family: var(--font-body); text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-hero-solid:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* Decorative leaves */
.hero-leaf {
  position: absolute; font-size: 1.4rem; opacity: 0.6;
  animation: leafSway 5s ease-in-out infinite;
}
.hl-left { bottom: 30%; left: 0; animation-delay: 0s; }
.hl-right { bottom: 28%; left: 60px; animation-delay: 1.5s; transform: scaleX(-1); }
@keyframes leafSway { 0%,100%{transform:rotate(-10deg) translateY(0)} 50%{transform:rotate(5deg) translateY(-8px)} }
.hl-right { @keyframes leafSway { 0%,100%{transform:scaleX(-1) rotate(-10deg) translateY(0)} 50%{transform:scaleX(-1) rotate(5deg) translateY(-8px)} } }

/* ── RIGHT: Branded Cup ── */
.hero-cup-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  /* Contain all children — prevent glow overflow clipping cup */
  overflow: visible;
  padding-right: max(2%, calc((100vw - 1200px) / 2 + 16px));
  animation: cupLevitate 7s ease-in-out infinite;
}
@keyframes cupLevitate { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

/* Ambient glow behind cup */
.hcr-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,30,0.18) 0%, rgba(120,60,10,0.08) 40%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: hcrGlowPulse 4s ease-in-out infinite; pointer-events: none;
  /* Never wider than the column — use % not px */
}
.hcr-glow2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(50,30,10,0.12) 0%, transparent 65%);
  animation-delay: 2s; animation-duration: 6s;
}
@keyframes hcrGlowPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.6} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:1} }

/* Floating tea leaves */
.hcr-leaf {
  position: absolute; font-size: 1.6rem; opacity: 0; pointer-events: none;
  animation: hcrLeafFloat linear infinite;
}
.leaf1 { top: 25%; left: 8%; animation-duration: 7s; animation-delay: 0s; }
.leaf2 { top: 60%; left: 5%; animation-duration: 9s; animation-delay: 2s; }
.leaf3 { top: 20%; right: 8%; animation-duration: 8s; animation-delay: 1s; }
.leaf4 { bottom: 22%; right: 10%; animation-duration: 6s; animation-delay: 3s; }
@keyframes hcrLeafFloat {
  0% { opacity: 0; transform: translateY(20px) rotate(0deg); }
  15% { opacity: 0.7; }
  85% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-60px) rotate(180deg); }
}

/* The branded cup SVG */
.hcr-cup-scene { position: relative; z-index: 3; width: 100%; max-width: 340px; }
.hcr-cup-svg {
  width: 100%; max-width: 340px; height: auto;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(180,120,20,0.3));
  display: block;
}
.hcr-shimmer { animation: shimmerSway 3s ease-in-out infinite; }
@keyframes shimmerSway { 0%,100%{transform:translateX(-12px)} 50%{transform:translateX(12px)} }
/* Cup steam SVG paths */
.hcr-steam { stroke-dasharray: 110; stroke-dashoffset: 110; animation: steamDraw 2.8s ease-out infinite; }
.hcrs1{animation-delay:0s} .hcrs2{animation-delay:0.4s} .hcrs3{animation-delay:0.8s} .hcrs4{animation-delay:1.2s} .hcrs5{animation-delay:1.6s}

/* CSS steam wisps (thick visible wisps) */
.hcr-steam-field {
  position: absolute; bottom: 52%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 14px; pointer-events: none;
}
.hcr-wisp {
  width: 6px; border-radius: 99px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: wispRise 3.5s ease-out infinite;
}
.hcr-wisp.w1{animation-delay:0s;height:0}.hcr-wisp.w2{animation-delay:0.7s}.hcr-wisp.w3{animation-delay:1.4s}.hcr-wisp.w4{animation-delay:2.1s}.hcr-wisp.w5{animation-delay:2.8s}
@keyframes wispRise {
  0% { height: 0; opacity: 0; transform: translateX(0); }
  20% { opacity: 0.8; }
  100% { height: 100px; opacity: 0; transform: translateX(18px) scaleX(2.5); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(248,240,220,0.35); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; z-index: 4; animation: bounce 2s ease-in-out infinite;
}
.scroll-dot {
  width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; animation: dotPulse 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
@keyframes dotPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.7)} }

/* ── QUOTE TICKER ── */
.quote-ticker {
  background: var(--gold); color: #0a1a0e;
  overflow: hidden; height: 44px; display: flex; align-items: center;
  position: relative; z-index: 2;
}
.ticker-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
}
.ticker-inner span { flex-shrink: 0; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about { padding: 120px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual { position: relative; }

/* New canvas-based frame — fully self-contained, zero overflow issues */
.about-frame-new {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,149,42,0.2);
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-dark) 100%);
  overflow: hidden; /* safe now — canvas draws everything inside */
  min-height: 460px;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: flex-end;
}
.about-canvas {
  width: 100%; display: block;
  /* height set by JS to match container */
}

/* Homegrown badge */
.about-badge-float {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: #0a1a0e;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  animation: badgeFloat 3.5s ease-in-out infinite; z-index: 10;
  pointer-events: none;
}
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Stat strip at bottom of frame */
.about-stats-inline {
  display: flex; align-items: center; justify-content: space-around;
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(200,149,42,0.15);
  position: relative; z-index: 5;
}
.asi-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.asi-icon { font-size: 1.3rem; }
.asi-num {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.asi-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(248,240,220,0.55);
}
.asi-divider {
  width: 1px; height: 32px;
  background: rgba(200,149,42,0.2);
}

.about-text { }
.about-text p { margin-bottom: 16px; color: rgba(248,240,220,0.8); font-size: 0.97rem; }
.about-stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(200,149,42,0.15);
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat span:last-child { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); opacity: 0.6; }




/* ── Tourist card links ── */
.tc-links {
  display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; justify-content: center;
}
.tc-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none; transition: all 0.3s; cursor: pointer;
}
.tc-link-info {
  background: rgba(200,149,42,0.12); border: 1px solid rgba(200,149,42,0.25);
  color: var(--gold-pale);
}
.tc-link-info:hover { background: rgba(200,149,42,0.25); color: var(--gold-bright); transform: translateY(-2px); }
.tc-link-map {
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}
.tc-link-map:hover { background: rgba(34,197,94,0.2); transform: translateY(-2px); }

/* ════════════════════════════════
   SELFIE WALL
════════════════════════════════ */
.selfie-wall {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-deep) 100%);
}
/* Steps */
.sw-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-bottom: 60px;
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius-lg); padding: 32px;
}
.sw-step {
  flex: 1; min-width: 160px; text-align: center; padding: 16px;
}
.sw-step-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px;
}
.sw-step-icon { font-size: 2.2rem; margin-bottom: 10px; }
.sw-step p { font-size: 0.82rem; color: rgba(248,240,220,0.7); line-height: 1.6; }
.sw-step-arrow {
  font-size: 1.5rem; color: var(--gold); opacity: 0.4; padding: 0 8px;
  align-self: center;
}
/* Selfie grid */
.sw-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.sw-card {
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.sw-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.sw-card-inner {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center; position: relative; min-height: 200px;
  justify-content: center;
}
.sw-avatar { font-size: 3rem; }
.sw-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--warm-white); }
.sw-caption { font-size: 0.82rem; color: rgba(248,240,220,0.7); line-height: 1.5; font-style: italic; }
.sw-tag { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.05em; }
.sw-insta-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 1rem; background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.3); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.sw-likes {
  font-size: 0.8rem; color: rgba(248,240,220,0.5); cursor: pointer;
}
.sw-like-btn { cursor: none; transition: transform 0.2s; }
.sw-like-btn:hover { transform: scale(1.2); }
/* Add card */
.sw-card-add .sw-add-inner {
  background: linear-gradient(135deg, rgba(200,149,42,0.08), var(--green-mid));
  border: 2px dashed rgba(200,149,42,0.35); min-height: 200px;
  transition: border-color 0.3s;
}
.sw-card-add:hover .sw-add-inner { border-color: var(--gold); }
.sw-add-icon { font-size: 2.5rem; margin-bottom: 4px; }
.sw-add-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold-pale); }
.sw-add-sub { font-size: 0.78rem; color: rgba(248,240,220,0.5); }
/* CTA Banner */
.sw-cta { }
.sw-cta-inner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
  border: 1px solid rgba(200,149,42,0.2); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.sw-cta-left h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 10px; }
.sw-cta-left p { color: rgba(248,240,220,0.7); font-size: 0.9rem; max-width: 480px; line-height: 1.7; }
.sw-cta-right { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white; padding: 14px 28px; font-size: 0.88rem; border-radius: 50px;
  font-weight: 700; cursor: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.3s var(--ease-spring); display: inline-flex;
  align-items: center; gap: 8px; border: none;
  box-shadow: 0 6px 24px rgba(220,39,67,0.35);
}
.btn-insta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 36px rgba(220,39,67,0.5); }
.insta-icon { font-size: 1.2rem; }
.sw-handle { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; }


/* ════════════════════════════════
   FACTS
════════════════════════════════ */
.facts {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-deep) 100%);
}
.facts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 80px;
}
.fact-card {
  background: var(--green-mid);
  border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
}
.fact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200,149,42,0.4);
  box-shadow: var(--shadow-gold);
}
.fact-card:hover .fact-glow { opacity: 1; }
.fact-icon { font-size: 2.2rem; margin-bottom: 16px; }
.fact-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--gold-pale); margin-bottom: 12px;
}
.fact-card p { font-size: 0.9rem; color: rgba(248,240,220,0.7); line-height: 1.7; }
.fact-glow {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(200,149,42,0.08) 0%, transparent 70%);
  transition: opacity 0.4s;
}

/* Facts Tabs */
.facts-tabs {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 48px;
}
.facts-tab {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.2);
  color: var(--cream); padding: 12px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; cursor: none; transition: all 0.3s;
}
.facts-tab.active, .facts-tab:hover { background: var(--gold); color: #0a1a0e; border-color: var(--gold); }
.facts-panel { transition: opacity 0.4s; }
.facts-panel.hidden { display: none; }

/* Dual timeline */
.timelines-wrap { margin-top: 80px; }
.timeline-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.timeline-col { }
.timeline-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--gold-pale); margin-bottom: 36px; text-align: center;
}
.tl-vertical {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 32px;
}
.tl-vertical::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}
.tlv-item {
  position: relative; padding: 0 0 28px 24px;
}
.tlv-item::before {
  content: ''; position: absolute; left: -22px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px rgba(200,149,42,0.5);
}
.tlv-item.highlight::before { background: var(--gold-bright); width: 14px; height: 14px; left: -24px; box-shadow: 0 0 20px rgba(232,185,74,0.7); }
.tl-year {
  display: inline-block; background: var(--gold); color: #0a1a0e;
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 8px;
}
.today-tag { background: var(--gold-bright); }
.tlv-item p { font-size: 0.85rem; color: rgba(248,240,220,0.7); line-height: 1.6; }


/* ════════════════════════════════
   MENU
════════════════════════════════ */
.menu { padding: 120px 0; background: var(--green-deep); }
.menu-tabs {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 48px;
}
.tab {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.2);
  color: var(--cream); padding: 10px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: none;
  transition: all 0.3s;
}
.tab.active, .tab:hover { background: var(--gold); color: #0a1a0e; border-color: var(--gold); }
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.1);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.3s;
}
.menu-card:hover { transform: translateY(-10px) scale(1.03); border-color: rgba(200,149,42,0.5); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold); }
.menu-card:hover .menu-steam { opacity: 1; }
.menu-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }
/* Custom SVG illustration wrapper (e.g. masala tea) */
.menu-svg-wrap {
  display: flex; justify-content: center; align-items: center;
  height: 4rem; margin-bottom: 16px;
}
.menu-custom-svg {
  width: 72px; height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)) drop-shadow(0 0 14px rgba(200,120,30,0.3));
  transition: transform 0.4s var(--ease-spring), filter 0.4s;
}
.menu-card:hover .menu-custom-svg {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6)) drop-shadow(0 0 22px rgba(210,140,30,0.55));
}
.menu-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--warm-white); margin-bottom: 6px;
}
.menu-tamil { font-family: var(--font-tamil); font-size: 0.85rem; color: var(--gold-pale); margin-bottom: 16px; }
.menu-price {
  display: inline-block; background: var(--gold);
  color: #0a1a0e; padding: 6px 18px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
}
.menu-steam {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; gap: 8px;
}
.menu-steam-line {
  width: 3px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%);
  border-radius: 99px; animation: steamRise 2s ease-out infinite;
}
.menu-steam-line:nth-child(2) { animation-delay: 0.5s; }
.menu-steam-line:nth-child(3) { animation-delay: 1s; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 100%);
}
.testi-slider-wrap { position: relative; overflow: hidden; }
.testi-slider {
  display: flex; transition: transform 0.6s var(--ease-smooth);
}
.testi-card {
  min-width: 100%; padding: 60px 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.testi-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-soft); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; border: 2px solid var(--gold);
}
.testi-stars { color: var(--gold); letter-spacing: 4px; font-size: 1.1rem; }
.testi-quote {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400; font-style: italic; color: var(--warm-white);
  max-width: 700px; line-height: 1.6;
}
.testi-tamil { font-family: var(--font-tamil); font-size: 1rem; color: var(--gold-pale); }
.testi-name { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,240,220,0.5); }
.testi-glass {
  background: rgba(26,53,37,0.4); backdrop-filter: blur(20px);
  border: 1px solid rgba(200,149,42,0.15); border-radius: var(--radius-lg);
  padding: 40px; max-width: 800px; width: 100%;
}
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(200,149,42,0.15); border: 1px solid rgba(200,149,42,0.3);
  color: var(--gold); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.5rem; cursor: none; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 2;
}
.testi-arrow:hover { background: var(--gold); color: #0a1a0e; }
.testi-arrow.prev { left: 16px; }
.testi-arrow.next { right: 16px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(200,149,42,0.3); transition: all 0.3s; cursor: none;
}
.testi-dot.active { background: var(--gold); transform: scale(1.4); }

/* ════════════════════════════════
   MEMORIES WALL
════════════════════════════════ */
.memories { padding: 120px 0; background: var(--green-deep); }
.memories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 60px;
}
.mem-card {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.15);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.mem-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.mem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.mem-quote {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  font-style: italic; color: var(--warm-white); line-height: 1.6; margin-bottom: 20px;
}
.mem-tamil { font-family: var(--font-tamil); font-size: 0.9rem; color: var(--gold-pale); margin-bottom: 24px; }
.mem-footer { display: flex; justify-content: space-between; align-items: center; }
.mem-tag { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.mem-actions { display: flex; gap: 12px; color: rgba(248,240,220,0.4); font-size: 0.9rem; }
.mem-actions span { cursor: none; transition: color 0.3s; }
.mem-actions span:hover { color: var(--gold); }
.mem-heart { animation: heartFloat 3s ease-in-out infinite; display: inline-block; }
@keyframes heartFloat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
/* Quote generator */
.quote-gen { display: flex; justify-content: center; }
.qgen-card {
  background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
  border: 1px solid rgba(200,149,42,0.25); border-radius: var(--radius-lg);
  padding: 40px 48px; text-align: center; max-width: 600px;
  box-shadow: var(--shadow-gold);
}
.qgen-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.qgen-quote {
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  color: var(--warm-white); margin-bottom: 24px; min-height: 60px;
  transition: opacity 0.4s;
}
.qgen-quote.fade { opacity: 0; }

/* ════════════════════════════════
   TOURIST SPOTS
════════════════════════════════ */
.tourist {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
}
.tourist-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tourist-card {
  background: var(--green-dark); border: 1px solid rgba(200,149,42,0.1);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
}
.tourist-card:hover {
  transform: translateY(-8px); border-color: rgba(200,149,42,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.tourist-card:hover .tc-glow { opacity: 1; }
.tc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tc-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--warm-white); margin-bottom: 8px;
}
.tc-dist {
  display: inline-block; background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.3); color: var(--gold-pale);
  padding: 3px 12px; border-radius: 50px; font-size: 0.72rem;
  margin-bottom: 12px; letter-spacing: 0.08em;
}
.tc-desc { font-size: 0.82rem; color: rgba(248,240,220,0.65); line-height: 1.6; margin-bottom: 16px; }
.tc-links {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 4px; position: relative; z-index: 2;
}
.tc-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 50px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.04em; transition: all 0.3s var(--ease-spring);
  text-decoration: none; cursor: pointer;
}
.tc-link-info {
  background: rgba(200,149,42,0.12); border: 1px solid rgba(200,149,42,0.3);
  color: var(--gold-pale);
}
.tc-link-info:hover { background: var(--gold); color: #0a1a0e; border-color: var(--gold); transform: translateY(-2px); }
.tc-link-map {
  background: rgba(58,122,86,0.15); border: 1px solid rgba(58,122,86,0.4);
  color: rgba(248,240,220,0.8);
}
.tc-link-map:hover { background: var(--green-light); color: white; border-color: var(--green-light); transform: translateY(-2px); }
.tc-glow {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 60%, rgba(200,149,42,0.08) 0%, transparent 65%);
  transition: opacity 0.4s;
}

/* ════════════════════════════════
   SELFIE WALL — Instagram Style
════════════════════════════════ */
.selfie-wall {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 60%, var(--green-deep) 100%);
}
/* Steps strip */
.sw-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 60px; flex-wrap: wrap;
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius-lg); padding: 28px;
}
.sw-step { flex: 1; min-width: 140px; text-align: center; padding: 12px 16px; }
.sw-step-num {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px;
}
.sw-step-icon { font-size: 2rem; margin-bottom: 10px; }
.sw-step p { font-size: 0.8rem; color: rgba(248,240,220,0.7); line-height: 1.5; }
.sw-step p strong { color: var(--gold-pale); }
.sw-step-arrow { font-size: 1.4rem; color: rgba(200,149,42,0.4); padding: 0 6px; align-self: center; }

/* Selfie grid — Instagram 3-col style */
.sw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.sw-card {
  border-radius: 18px; overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  opacity: 0; transform: translateY(40px);
}
.sw-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth); }
.sw-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }

/* Instagram-style card */
.sw-insta-card {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.12);
  border-radius: 18px; overflow: hidden; display: flex; flex-direction: column;
}
/* Card header */
.sw-insta-header {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(200,149,42,0.08);
}
.sw-insta-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green-soft));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.sw-insta-meta { flex: 1; display: flex; flex-direction: column; }
.sw-insta-name { font-size: 0.82rem; font-weight: 700; color: var(--warm-white); }
.sw-insta-time { font-size: 0.68rem; color: rgba(248,240,220,0.4); }
.sw-insta-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  flex-shrink: 0;
}
/* Photo frame */
.sw-photo-frame {
  position: relative; width: 100%; padding-bottom: 100%; /* square */
  overflow: hidden; background: var(--green-dark);
}
.sw-photo-frame .sw-selfie-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transition: transform 0.5s var(--ease-smooth);
}
.sw-card:hover .sw-selfie-svg { transform: scale(1.04); }
/* Steam inside selfie SVG */
.sp-steam {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: steamDraw 2.5s ease-out infinite;
}
.sw-photo-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}
/* Caption */
.sw-insta-body {
  padding: 12px 14px 8px;
}
.sw-caption {
  font-size: 0.83rem; color: var(--warm-white); line-height: 1.5; margin-bottom: 5px;
}
.sw-tag { font-size: 0.72rem; color: var(--gold); font-weight: 600; }
/* Action row */
.sw-insta-actions {
  display: flex; gap: 12px; padding: 8px 14px 14px;
  border-top: 1px solid rgba(200,149,42,0.08);
}
.sw-action-btn {
  background: none; border: none; color: rgba(248,240,220,0.5);
  font-size: 0.78rem; cursor: none; transition: all 0.25s;
  display: flex; align-items: center; gap: 4px; font-family: var(--font-body);
  font-weight: 600; padding: 0;
}
.sw-action-btn:hover { color: var(--gold-bright); }
.like-btn:hover .like-icon { transform: scale(1.3); }
.like-icon { transition: transform 0.2s var(--ease-spring); display: inline-block; }
.like-btn { transition: transform 0.2s var(--ease-spring); }

/* "Be Next" add card */
.sw-card-add .sw-add-card {
  background: var(--green-mid); border: 2px dashed rgba(200,149,42,0.3);
  border-radius: 18px; min-height: 420px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; text-align: center; padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.sw-card-add:hover .sw-add-card { border-color: var(--gold); }
.sw-add-pulse {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,0.15), transparent);
  animation: addPulse 2.5s ease-in-out infinite;
}
@keyframes addPulse { 0%,100%{transform:scale(1); opacity:0.6} 50%{transform:scale(1.4); opacity:1} }
.sw-add-camera { font-size: 3.5rem; animation: cameraShake 3s ease-in-out infinite; z-index: 1; }
@keyframes cameraShake { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-5deg)} 75%{transform:rotate(5deg)} }
.sw-add-card h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--warm-white); line-height: 1.3; z-index: 1;
}
.sw-add-card p { font-size: 0.82rem; color: rgba(248,240,220,0.6); z-index: 1; }
.sw-add-card strong { color: var(--gold); font-size: 0.9rem; z-index: 1; }
.sw-add-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; margin-top: 8px;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: white; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 20px rgba(220,39,67,0.4); z-index: 1; cursor: pointer;
}
.sw-add-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 30px rgba(220,39,67,0.6); }

/* CTA banner */
.sw-cta { }
.sw-cta-inner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-soft));
  border: 1px solid rgba(200,149,42,0.2); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: 0 0 80px rgba(200,149,42,0.08);
}
.sw-cta-left h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 10px; }
.sw-cta-left p { font-size: 0.9rem; color: rgba(248,240,220,0.7); max-width: 460px; line-height: 1.7; }
.sw-cta-right { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: none; border: none;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; transition: all 0.3s var(--ease-spring);
  box-shadow: 0 6px 24px rgba(220,39,67,0.45); text-decoration: none;
}
.btn-insta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(220,39,67,0.6); }
.insta-icon { font-size: 1.2rem; }
.sw-handle { font-size: 0.8rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; }




/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gallery { padding: 120px 0; background: var(--green-deep); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.1);
  display: flex; align-items: center; justify-content: center;
  min-height: 180px; cursor: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.6); z-index: 2; }
.gallery-item:hover .gal-overlay { opacity: 1; }
.gal-inner {
  width: 100%; height: 100%; min-height: inherit;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px;
}
.gal-emoji { font-size: 3rem; }
.gal-label { font-size: 0.8rem; color: var(--gold-pale); letter-spacing: 0.1em; text-align: center; }
.gal-overlay {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(200,149,42,0.2), rgba(10,26,14,0.5));
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s; font-size: 1.5rem;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact { padding: 120px 0; background: var(--green-dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; align-items: start;
}
.info-card {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.15);
  border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 28px;
}
.info-row { display: flex; gap: 18px; align-items: flex-start; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-row strong { display: block; color: var(--gold-pale); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.info-row p { color: rgba(248,240,220,0.75); font-size: 0.9rem; line-height: 1.6; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.map-placeholder {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.15);
  border-radius: var(--radius-lg); padding: 60px 36px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(200,149,42,0.08) 0%, transparent 60%);
}
.map-pin { font-size: 3rem; animation: mapPinBounce 2s ease-in-out infinite; }
@keyframes mapPinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.map-placeholder p { font-family: var(--font-display); font-size: 1.1rem; color: var(--warm-white); }
.map-placeholder span { font-size: 0.85rem; color: rgba(248,240,220,0.5); }
.map-btn { margin-top: 12px; }
.contact-form {
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.15);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--gold-pale); margin-bottom: 28px;
}
.form-row { margin-bottom: 16px; }
.form-row input, .form-row textarea {
  width: 100%; background: var(--green-dark); border: 1px solid rgba(200,149,42,0.15);
  border-radius: 10px; padding: 14px 18px; color: var(--cream);
  font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.3s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(248,240,220,0.3); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--green-deep); border-top: 1px solid rgba(200,149,42,0.1);
  padding-top: 80px; position: relative; overflow: hidden;
}
.footer-steam { position: absolute; top: 0; left: 50%; transform: translateX(-50%); display: flex; gap: 24px; }
.fsteam { width: 4px; border-radius: 99px; background: rgba(200,149,42,0.3); animation: steamRise 3s ease-out infinite; }
.fsteam.fs1 { animation-delay: 0s; }
.fsteam.fs2 { animation-delay: 1s; }
.fsteam.fs3 { animation-delay: 2s; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
}
.footer-brand { }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 20px; }
.footer-quote {
  color: rgba(248,240,220,0.5); font-size: 0.9rem; line-height: 1.7;
  font-family: var(--font-tamil);
}
.footer-quote em { color: rgba(248,240,220,0.35); font-style: normal; font-family: var(--font-body); font-size: 0.82rem; display: block; margin-top: 4px; }
.footer-links h4, .footer-social h4 {
  color: var(--gold-pale); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(248,240,220,0.5); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-bottom: 12px; }
.soc-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: all 0.3s; cursor: none;
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social-handle { font-size: 0.8rem; color: rgba(248,240,220,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(200,149,42,0.08);
  padding: 20px 24px; text-align: center;
  font-size: 0.78rem; color: rgba(248,240,220,0.3);
}

/* ── DID YOU KNOW POPUP ──────────────────── */
.dyk-popup {
  position: fixed; bottom: 32px; right: 32px; z-index: 600;
  background: var(--green-mid); border: 1px solid rgba(200,149,42,0.3);
  border-radius: var(--radius-lg); padding: 28px 32px; max-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: translateY(20px); opacity: 0;
  transition: all 0.5s var(--ease-spring);
  pointer-events: none;
}
.dyk-popup.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.dyk-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; color: rgba(248,240,220,0.4);
  font-size: 0.9rem; cursor: none; transition: color 0.3s;
}
.dyk-close:hover { color: var(--gold); }
.dyk-icon { font-size: 1.8rem; margin-bottom: 10px; }
.dyk-popup h4 { color: var(--gold-pale); font-family: var(--font-display); font-size: 1rem; margin-bottom: 10px; }
.dyk-popup p { font-size: 0.85rem; color: rgba(248,240,220,0.75); line-height: 1.6; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-duo { grid-template-columns: 1fr; gap: 60px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .tourist-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .sw-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  /* Hero: give slightly more room to the cup column */
  .hero { grid-template-columns: 58% 42%; }
  .hcr-cup-svg { max-width: 280px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,26,14,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 4px; border-bottom: 1px solid rgba(200,149,42,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  /* Hero: stack vertically on mobile */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100svh;
    align-content: center;
    height: auto;
    padding-top: 80px;
  }
  .hero-content {
    padding: 40px 24px 20px;
    text-align: center;
    order: 2; /* text below cup on mobile */
  }
  .hero-cta { justify-content: center; }
  .hero-location { justify-content: center; }
  .hero-leaf { display: none; }
  .hero-cup-right {
    order: 1; /* cup on top */
    height: 260px;
    padding-right: 0;
    animation: none; /* stop floating on mobile for perf */
  }
  .hcr-cup-svg { max-width: 180px; }
  .hcr-glow { width: 180px; height: 180px; }
  .hcr-glow2 { width: 240px; height: 240px; }
  .hcr-leaf { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .facts-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { padding: 40px 24px; }
  .memories-grid { grid-template-columns: 1fr; }
  .tourist-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 1; }
  .sw-grid { grid-template-columns: 1fr 1fr; }
  .sw-steps { gap: 12px; }
  .sw-step-arrow { display: none; }
  .sw-cta-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: span 1; }
  .dyk-popup { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .tourist-grid { grid-template-columns: 1fr; }
  .sw-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .about-stats { gap: 20px; }
  .tc-links { flex-direction: column; }
}

