:root{
  --green-deep:#0E2A20;
  --green:#1B4332;
  --green-soft:#234D3A;
  --gold:#C9A04A;
  --gold-light:#E4C887;
  --cream:#F5EDD6;
  --cream-dim:#EDE3C6;
  --ink:#16201B;
  --serif: 'Playfair Display', serif;
  --display: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;
  --arabic: 'Scheherazade New', serif;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--body);
  overflow-x:hidden;
  cursor:none;
}
@media (max-width:900px){ body{cursor:auto;} }
::selection{background:var(--gold); color:var(--green-deep);}

/* ---------- custom cursor ---------- */
.cursor-dot{
  position:fixed; width:8px;height:8px;border-radius:50%;
  background:var(--gold); pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%); transition:transform .15s ease, opacity .2s;
}
.cursor-ring{
  position:fixed; width:34px;height:34px;border-radius:50%;
  border:1px solid var(--gold-light); pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%); transition:width .25s,height .25s, transform .08s linear, border-color .2s;
}
@media (max-width:900px){ .cursor-dot,.cursor-ring{display:none;} }

/* ---------- nav ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 5vw;
  background:linear-gradient(to bottom, rgba(14,42,32,.85), transparent);
  transition:background .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
header.scrolled{
  background:rgba(14,42,32,.92);
  backdrop-filter:blur(14px);
  padding:14px 5vw;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.logo{
  font-family:var(--display); font-weight:700; font-size:1.9rem;
  color:var(--cream); letter-spacing:.5px; display:flex; align-items:center; gap:10px;
}
.logo span{color:var(--gold);}
.logo svg{width:30px;height:30px;}
#nav ul{display:flex; gap:38px; list-style:none;}
#nav a{
  color:var(--cream-dim); text-decoration:none; font-size:.82rem; letter-spacing:1.5px;
  text-transform:uppercase; position:relative; padding-bottom:4px;
}
#nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold);
  transition:width .35s ease;
}
#nav a:hover::after{width:100%;}
.nav-cta{
  border:1px solid var(--gold); color:var(--gold)!important; padding:9px 22px; border-radius:30px;
  font-size:.75rem!important; transition:.35s;
}
.nav-cta::after{display:none;}
.nav-cta:hover{background:var(--gold); color:var(--green-deep)!important;}
.burger{display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:600;}
.burger span{width:26px;height:2px;background:var(--cream);}
@media (max-width:900px){
  #nav{position:fixed; top:0; right:0; height:100vh; width:75%; background:var(--green-deep);
    display:flex; align-items:center; transform:translateX(100%); transition:transform .5s ease; z-index:550;}
  #nav.open{transform:translateX(0);}
  #nav ul{flex-direction:column; align-items:flex-start; padding:0 40px; gap:28px;}
  .burger{display:flex;}
}

/* ---------- hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,160,74,.18), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(201,160,74,.12), transparent 50%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 55%, #0c241c 100%);
  overflow:hidden;
}
.hero canvas{position:absolute; inset:0; width:100%; height:100%;}
.hero-pattern{
  position:absolute; inset:0; opacity:.07; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23C9A04A' stroke-width='1'%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z'/%3E%3Ccircle cx='60' cy='60' r='34'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner{position:relative; z-index:5; text-align:center; padding:0 5vw; max-width:1100px;}
.hero-eyebrow{
  font-family:var(--arabic); color:var(--gold-light); font-size:1.4rem; letter-spacing:3px;
  display:block; margin-bottom:18px; opacity:.9;
}
.hero h1{
  font-family:var(--display); font-weight:700; line-height:.95;
  font-size:clamp(3.2rem, 9vw, 8.5rem); color:var(--cream);
}
.hero h1 .line2{
  display:block; color:transparent; -webkit-text-stroke:1px var(--gold-light);
  background:linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 30%, #fff6dd 50%, var(--gold) 70%, var(--gold-light) 100%);
  background-size:250% 100%; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; animation:shine 5s linear infinite;
}
@keyframes shine{ to{ background-position:-250% 0; } }
.hero-tag{
  font-family:var(--serif); font-style:italic; color:var(--cream-dim); font-size:1.15rem;
  margin:38px auto 38px; max-width:560px; opacity:.85;
}
.hero-cta{
  display:inline-flex; align-items:center; gap:12px; background:var(--gold); color:var(--green-deep);
  font-weight:600; letter-spacing:1px; text-decoration:none; padding:17px 38px; border-radius:50px;
  position:relative; overflow:hidden; font-size:.92rem;
}
.hero-cta::before{
  content:''; position:absolute; inset:0; background:radial-gradient(circle, #fff6dd, transparent 60%);
  opacity:0; transition:opacity .4s;
}
.hero-cta:hover::before{opacity:.5;}
.hero-stats{
  position:absolute; bottom:56px; left:0; right:0; display:flex; justify-content:center; gap:60px;
  z-index:5; flex-wrap:wrap;
}
.stat{text-align:center;}
.stat b{font-family:var(--display); font-size:2.6rem; color:var(--gold-light); display:block; line-height:1;}
.stat span{font-size:.7rem; letter-spacing:2px; color:var(--cream-dim); text-transform:uppercase;}
@media (max-width:700px){ .hero-stats{gap:30px; bottom:24px;} .stat b{font-size:1.8rem;} }

/* ---- extra breathing room between the "Book Your Event" button and
   the stats row below it (stays in its original position, just spaced out) ---- */
.hero-cta{ margin-bottom:34px; }

/* ---------- hero entrance reveal ---------- */
.hero-reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.hero-reveal.in-view{ opacity:1; transform:translateY(0); }

/* ---------- typewriter word cycle (hero) ---------- */
.type-word{ display:inline-block; }
.type-cursor{
  display:inline-block; margin-left:4px; color:var(--gold-light);
  animation:blinkCursor 1s steps(1) infinite;
}
@keyframes blinkCursor{ 50%{ opacity:0; } }

/* ---------- section shared ---------- */
section{padding:90px 5vw;}
.eyebrow{
  font-family:var(--arabic); color:var(--gold); font-size:1.1rem; letter-spacing:2px; display:block; margin-bottom:10px;
}
.section-head{text-align:center; max-width:680px; margin:0 auto 50px;}
.section-head h2{
  font-family:var(--display); font-weight:700; font-size:clamp(2.4rem,5vw,4.2rem); color:var(--green-deep); line-height:1.05;
}
.section-head p{font-family:var(--serif); font-style:italic; color:#5a6b62; margin-top:16px; font-size:1.05rem;}

/* ---------- marquee ---------- */
.marquee-wrap{
  background:var(--green-deep); padding:22px 0; overflow:hidden; border-top:1px solid rgba(201,160,74,.3); border-bottom:1px solid rgba(201,160,74,.3);
}
.marquee{display:flex; white-space:nowrap; animation:scroll-left 30s linear infinite;}
.marquee span{
  font-family:var(--display); font-size:1.7rem; color:var(--gold-light); padding:0 40px; flex-shrink:0;
}
.marquee span::after{content:'✦'; color:var(--gold); margin-left:40px;}
@keyframes scroll-left{ to{ transform:translateX(-50%); } }

/* ---------- menu carousel ---------- */
.menu-section{background:var(--cream); position:relative;}
.menu-track-wrap{overflow-x:auto; padding-bottom:30px; scrollbar-width:thin; scrollbar-color:var(--gold) transparent;}
.menu-track{display:flex; gap:34px; padding:10px 5vw 10px 5vw; width:max-content;}
.dish-card{
  width:300px; flex-shrink:0; perspective:1200px;
}
.dish-inner{
  background:#fff; border-radius:22px; overflow:hidden; box-shadow:0 20px 45px rgba(27,67,50,.12);
  transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; transform-style:preserve-3d;
}
.dish-card:hover .dish-inner{transform:rotateY(8deg) rotateX(4deg) translateY(-8px); box-shadow:0 35px 55px rgba(27,67,50,.22);}
.dish-img{height:230px; background-size:cover; background-position:center; position:relative;}
.dish-price{
  position:absolute; top:16px; right:16px; background:var(--gold); color:var(--green-deep);
  font-family:var(--display); font-weight:700; font-size:1.1rem; padding:8px 16px; border-radius:30px;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.dish-body{padding:24px 24px 28px;}
.dish-body h3{font-family:var(--serif); font-size:1.3rem; color:var(--green-deep);}
.dish-body p{font-size:.85rem; color:#7a8a80; margin-top:8px; line-height:1.5;}
.dish-tag{
  display:inline-block; margin-top:14px; font-size:.68rem; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--gold); border:1px solid var(--gold); padding:5px 12px; border-radius:20px;
}

/* ---------- services bento ---------- */
.services{background:var(--cream-dim);}
.bento-top{
  display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:1280px; margin:0 auto;
}
.bento-bottom{
  display:flex; flex-wrap:wrap; justify-content:center; gap:22px; max-width:1280px; margin:22px auto 0;
}
.bento-bottom .bento-card{flex:1 1 320px; max-width:400px; height:300px;}
.bento-card{
  position:relative; border-radius:28px; overflow:hidden; cursor:pointer;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}
.bento-card.big{height:320px;}
.bento-card img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.55; transition:transform .8s ease, opacity .5s;}
.bento-card:hover img{transform:scale(1.12); opacity:.7;}
.bento-overlay{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:24px;
  background:linear-gradient(to top, rgba(14,42,32,.92), transparent 60%);
}
.bento-overlay h3{font-family:var(--serif); color:var(--cream); font-size:1.4rem;}
.bento-card.big .bento-overlay h3{font-size:2rem;}
.bento-overlay p{color:var(--gold-light); font-size:.8rem; margin-top:6px; max-width:240px; opacity:0; transform:translateY(8px); transition:.4s;}
.bento-card:hover .bento-overlay p{opacity:1; transform:translateY(0);}
@media (max-width:900px){
  .bento-top{grid-template-columns:1fr;}
  .bento-card.big{height:280px;}
}
@media (max-width:600px){ .bento-bottom .bento-card{flex:1 1 100%;} }

/* ---------- story scroll ---------- */
.story{background:var(--green-deep); color:var(--cream); position:relative;}
.story .section-head h2{color:var(--cream);}
.story .section-head p{color:var(--gold-light);}
.story-timeline{position:relative; max-width:1100px; margin:0 auto;}
.story-line{
  position:absolute; left:50%; top:0; bottom:0; width:2px;
  background:repeating-linear-gradient(to bottom, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  transform:translateX(-50%);
}
.story-item{
  display:flex; align-items:center; gap:60px; max-width:1100px; margin:0 auto 90px; position:relative;
}
.story-item:last-child{margin-bottom:0;}
.story-item:nth-child(even){flex-direction:row-reverse;}
.story-img{
  width:42%; aspect-ratio:4/3; border-radius:20px; background-size:cover; background-position:center; flex-shrink:0;
  box-shadow:0 30px 60px rgba(0,0,0,.4); border:1px solid rgba(201,160,74,.3);
}
.story-text{width:58%;}
.story-num{font-family:var(--display); color:var(--gold); font-size:1rem; letter-spacing:3px;}
.story-text h3{font-family:var(--serif); font-size:2.1rem; margin:8px 0 14px;}
.story-text p{color:#cdd9d1; line-height:1.7; font-size:.95rem; max-width:420px;}
.story-dot{
  position:absolute; left:50%; top:50%; width:16px;height:16px; border-radius:50%; background:var(--gold);
  transform:translate(-50%,-50%); box-shadow:0 0 0 6px rgba(201,160,74,.18);
}
@media (max-width:850px){
  .story-line{display:none;}
  .story-item, .story-item:nth-child(even){flex-direction:column; gap:24px;}
  .story-img, .story-text{width:100%;}
  .story-dot{display:none;}
}

/* ---------- about ---------- */
.about{display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0; background:var(--cream);}
.about-left{
  background:linear-gradient(160deg, var(--green-deep), var(--green)); color:var(--cream);
  padding:120px 6vw; display:flex; flex-direction:column; justify-content:center;
}
.about-left .eyebrow{color:var(--gold-light);}
.about-left h2{font-family:var(--display); font-size:clamp(2.4rem,4vw,3.4rem); line-height:1.1;}
.about-left p{margin-top:22px; color:#cdd9d1; line-height:1.8; max-width:440px; font-size:.95rem;}
.about-stats{display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-top:46px;}
.about-stats b{font-family:var(--display); font-size:2.6rem; color:var(--gold-light); display:block;}
.about-stats span{font-size:.72rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--cream-dim);}
.about-right{
  background-size:cover; background-position:center; position:relative; min-height:560px;
}
.about-right::after{content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(14,42,32,.55), transparent 50%);}
@media (max-width:900px){ .about{grid-template-columns:1fr;} .about-left{padding:90px 7vw;} }

/* ---------- gallery ---------- */
.gallery{background:var(--cream-dim);}
.filters{display:flex; justify-content:center; gap:14px; margin-bottom:46px; flex-wrap:wrap;}
.filter-btn{
  background:transparent; border:1px solid var(--green); color:var(--green); padding:9px 22px; border-radius:30px;
  font-family:var(--body); font-size:.8rem; letter-spacing:.5px; cursor:pointer; transition:.3s;
}
.filter-btn.active, .filter-btn:hover{background:var(--green); color:var(--cream);}
.masonry{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows:8px; gap:18px; max-width:1300px; margin:0 auto; perspective:1400px;
}
.masonry-item{
  border-radius:16px; overflow:hidden; position:relative; cursor:pointer; background:var(--green-soft);
  transform-style:preserve-3d; transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  box-shadow:0 10px 24px rgba(27,67,50,.08);
}
.masonry-item:hover{box-shadow:0 30px 55px rgba(27,67,50,.28);}
.masonry-item img{width:100%; height:auto; display:block; transition:transform .6s ease, filter .5s ease;}
.masonry-item:hover img{transform:scale(1.1); filter:brightness(1.05);}

/* ---------- testimonials ---------- */
.testimonials{
  background:linear-gradient(180deg, var(--cream-dim), var(--cream)); text-align:center; position:relative; overflow:hidden;
}
.testimonials::before{
  content:''; position:absolute; top:8%; left:50%; width:640px; height:640px; transform:translateX(-50%);
  background:radial-gradient(circle, rgba(201,160,74,.14), transparent 62%); pointer-events:none;
}
.testimonials .section-head{position:relative; z-index:2;}
.test-track{position:relative; max-width:740px; margin:56px auto 0; min-height:340px; z-index:2;}
.test-card{
  position:absolute; inset:0; opacity:0; transform:translateY(16px) scale(.95);
  transition:opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
  background:#fff; border-radius:28px; padding:64px 48px 42px; box-shadow:0 30px 70px rgba(27,67,50,.14);
  border:1px solid rgba(201,160,74,.2); overflow:hidden;
}
.test-card.active{opacity:1; transform:translateY(0) scale(1); position:relative; z-index:2;}
.test-quote{
  font-family:var(--display); font-weight:700; font-size:7rem; color:var(--gold); line-height:1;
  position:absolute; top:6px; left:28px; opacity:.14; z-index:0; pointer-events:none;
}
.test-avatar, .test-avatar-initial{
  position:relative; z-index:1;
  box-shadow:0 12px 28px rgba(27,67,50,.28), 0 0 0 6px #fff;
}
.test-avatar{ animation:avatarRing 2.6s ease-in-out infinite; }
.test-avatar-initial{ animation:avatarRing 2.6s ease-in-out infinite; }
@keyframes avatarRing{
  0%,100%{ box-shadow:0 12px 28px rgba(27,67,50,.28), 0 0 0 6px #fff, 0 0 0 0 rgba(201,160,74,.45); }
  50%{ box-shadow:0 12px 28px rgba(27,67,50,.28), 0 0 0 6px #fff, 0 0 0 12px rgba(201,160,74,0); }
}
.test-text{position:relative; z-index:1; font-family:var(--serif); font-style:italic; font-size:1.22rem; color:var(--ink); line-height:1.65;}
.test-stars{position:relative; z-index:1; color:var(--gold); letter-spacing:3px; margin:20px 0 10px;}
.test-name{position:relative; z-index:1; font-weight:600; color:var(--green-deep); font-size:1.02rem;}
.test-event{position:relative; z-index:1; font-size:.76rem; color:#8a9a90; text-transform:uppercase; letter-spacing:1.2px; margin-top:2px;}
.test-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%;
  background:#fff; border:1px solid rgba(201,160,74,.5); color:var(--green-deep); font-size:1.7rem; line-height:1;
  cursor:pointer; z-index:6; transition:.3s; box-shadow:0 12px 30px rgba(27,67,50,.14);
}
.test-nav:hover{background:var(--gold); color:#fff; transform:translateY(-50%) scale(1.08);}
.test-nav.prev{left:-64px;}
.test-nav.next{right:-64px;}
@media (max-width:960px){ .test-nav{display:none;} }
.test-dots{position:relative; z-index:2; display:flex; justify-content:center; gap:10px; margin-top:36px; flex-wrap:wrap;}
.test-dot{width:9px;height:9px;border-radius:50%; background:#d9cfae; cursor:pointer; transition:.3s;}
.test-dot.active{background:var(--gold); width:26px; border-radius:6px;}
@media (max-width:600px){ .test-card{padding:56px 24px 34px;} .test-quote{font-size:5rem; left:16px;} }

/* ---------- feedback wall (scattered testimonial cards) ---------- */
.feedback-wall{
  max-width:1200px; margin:70px auto 0; display:grid; grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:minmax(110px, auto); gap:20px;
}
.wall-card{
  border-radius:18px; padding:22px; position:relative; overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease;
}
.wall-card:hover{transform:translateY(-6px); box-shadow:0 24px 50px rgba(27,67,50,.18);}
.wall-card.span2{grid-row:span 2;}
.wall-card.wide{grid-column:span 2;}

.wall-card.solid{background:var(--green-deep); color:var(--cream);}
.wall-card.outline{background:#fff; border:1px solid rgba(201,160,74,.4);}
.wall-card.cream{background:var(--cream-dim); border:1px solid rgba(201,160,74,.3);}
.wall-card.photo{background-size:cover; background-position:center; color:#fff;}
.wall-card.photo::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(14,42,32,.15), rgba(14,42,32,.85)); z-index:0;}
.wall-card.photo > *{position:relative; z-index:1;}

.wall-stars{color:var(--gold); letter-spacing:2px; font-size:.85rem; margin-bottom:10px;}
.wall-card.solid .wall-stars{color:var(--gold-light);}
.wall-quote-mark{font-family:var(--display); font-size:2.6rem; color:var(--gold); line-height:.6; margin-bottom:6px; display:block;}
.wall-text{font-family:var(--serif); font-style:italic; font-size:.92rem; line-height:1.5;}
.wall-foot{display:flex; align-items:center; gap:10px; margin-top:14px;}
.wall-avatar{width:34px; height:34px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); flex-shrink:0;}
.wall-avatar-initial{
  width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--gold); color:var(--green-deep); font-family:var(--display); font-weight:700; font-size:.85rem; flex-shrink:0;
}
.wall-name{font-weight:600; font-size:.82rem;}
.wall-role{font-size:.7rem; opacity:.7; text-transform:uppercase; letter-spacing:.5px;}
.wall-badge{
  position:absolute; top:16px; right:16px; background:var(--gold); color:var(--green-deep);
  font-size:.62rem; font-weight:700; letter-spacing:.5px; text-transform:uppercase; padding:4px 10px; border-radius:20px;
}
.wall-pill{
  display:inline-flex; align-items:center; gap:8px; background:rgba(201,160,74,.12); border:1px solid var(--gold);
  color:var(--green-deep); padding:6px 14px; border-radius:30px; font-size:.75rem; font-weight:600; margin-bottom:10px;
}
.wall-card.solid .wall-pill{background:rgba(201,160,74,.2); color:var(--gold-light);}
@media (max-width:1000px){ .feedback-wall{grid-template-columns:repeat(2,1fr);} .wall-card.wide{grid-column:span 2;} }
@media (max-width:560px){ .feedback-wall{grid-template-columns:1fr;} .wall-card.wide{grid-column:span 1;} .wall-card.span2{grid-row:span 1;} }

/* ---------- CTA / contact ---------- */
.cta-section{
  background:linear-gradient(160deg, var(--green-deep), #0a1f17); color:var(--cream); position:relative; overflow:hidden;
}
.cta-grid{display:grid; grid-template-columns:1fr 1fr; gap:70px; max-width:1200px; margin:0 auto; position:relative; z-index:2;}
.cta-left h2{font-family:var(--display); font-size:clamp(2.4rem,4vw,3.6rem); line-height:1.1;}
.cta-left p{color:#cdd9d1; margin:20px 0 30px; line-height:1.7; max-width:420px;}
.phone-row{display:flex; gap:16px; flex-wrap:wrap;}
.phone-pill{
  border:1px solid var(--gold); color:var(--gold-light); padding:12px 22px; border-radius:30px; text-decoration:none;
  font-size:.9rem; display:flex; align-items:center; gap:10px;
}
.phone-pill svg{flex-shrink:0;}
.form-box{
  background:rgba(245,237,214,.05); border:1px solid rgba(201,160,74,.3); border-radius:22px; padding:40px;
  backdrop-filter:blur(10px);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
.form-box input, .form-box select, .form-box textarea{
  width:100%; background:transparent; border:1px solid rgba(201,160,74,.4); color:var(--cream);
  padding:13px 16px; border-radius:10px; font-family:var(--body); font-size:.88rem; outline:none; transition:.3s;
}
.form-box input::placeholder, .form-box textarea::placeholder{color:#9fb0a6;}
.form-box input:focus, .form-box select:focus, .form-box textarea:focus{border-color:var(--gold);}
.form-box textarea{grid-column:1/-1; min-height:90px; resize:vertical;}
.submit-btn{
  margin-top:8px; width:100%; background:var(--gold); color:var(--green-deep); border:none; padding:15px; border-radius:10px;
  font-weight:600; letter-spacing:.5px; cursor:pointer; transition:.3s; font-size:.9rem;
}
.submit-btn:hover{background:var(--gold-light);}
@media (max-width:900px){ .cta-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;} }

/* ---------- footer ---------- */
footer{background:#091a14; color:#9fb0a6; padding:60px 5vw 30px; text-align:center;}
footer .logo{justify-content:center; margin-bottom:16px;}
.foot-links{display:flex; justify-content:center; gap:28px; margin:18px 0; flex-wrap:wrap; font-size:.85rem;}
.foot-links a{color:#cdd9d1; text-decoration:none;}
.foot-bottom{margin-top:30px; font-size:.75rem; border-top:1px solid rgba(255,255,255,.08); padding-top:20px;}
.foot-credit{margin-top:10px; font-size:.72rem; color:#7d8f85;}
.foot-credit a{color:var(--gold-light); text-decoration:none; font-weight:600;}
.foot-credit a:hover{text-decoration:underline;}

/* ---------- whatsapp float ---------- */
.whatsapp-float{
  position:fixed; bottom:28px; right:28px; width:60px; height:60px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center; z-index:400; box-shadow:0 10px 30px rgba(0,0,0,.3);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6);}
  70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ---------- sound toggle float ---------- */
.sound-toggle{
  position:fixed; bottom:28px; right:100px; width:52px; height:52px; border-radius:50%;
  background:var(--green-deep); border:1px solid var(--gold); color:var(--gold-light);
  font-size:1.3rem; cursor:pointer; z-index:400; box-shadow:0 10px 30px rgba(0,0,0,.3);
  transition:.3s;
}
.sound-toggle:hover{ background:var(--gold); color:var(--green-deep); }
.sound-toggle.on{ background:var(--gold); color:var(--green-deep); }
@media (max-width:700px){ .sound-toggle{ right:20px; bottom:96px; } }

.reveal{opacity:0; transform:translateY(40px);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
}

/* ===================================================
   LOCAL MEDIA WIRING — logo, hero video, avatars
   =================================================== */
.logo-mark{width:30px; height:30px; object-fit:contain; display:block; border-radius:6px;}

.hero-video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:.4; z-index:0;
}
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(160deg, rgba(14,42,32,.55) 0%, rgba(14,42,32,.75) 60%, rgba(10,20,17,.9) 100%);
}
.hero canvas{ z-index:2; }
.hero-pattern{ z-index:3; }
.hero-inner{ z-index:5; }
.hero-stats{ z-index:5; }

.test-avatar{
  width:84px; height:84px; border-radius:50%; object-fit:cover;
  display:block; margin:0 auto 16px; border:3px solid var(--gold);
  box-shadow:0 6px 16px rgba(27,67,50,.18);
}
.test-avatar-initial{
  width:84px; height:84px; border-radius:50%; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--green), var(--green-deep));
  color:var(--gold-light); font-family:var(--display); font-weight:700; font-size:1.5rem;
  border:3px solid var(--gold); box-shadow:0 6px 16px rgba(27,67,50,.18);
}

/* ===================================================
   PREMIUM ENHANCEMENTS — logo intro, hero branding,
   category grid, events, video carousel, lightbox
   =================================================== */

/* ---- opening logo animation ---- */
.logo-intro{
  position:fixed; inset:0; z-index:10000; background:var(--green-deep);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px;
  overflow:hidden;
}
.logo-intro-glow{
  position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,160,74,.35), transparent 65%);
  animation:introPulse 2.2s ease-in-out infinite;
}
@keyframes introPulse{ 0%,100%{transform:scale(.9); opacity:.6;} 50%{transform:scale(1.15); opacity:1;} }
.logo-intro-mark{
  width:120px; height:120px; object-fit:contain; border-radius:16px; position:relative;
  opacity:0; transform:scale(.6) rotate(-6deg);
  animation:introMark 1.4s cubic-bezier(.2,.9,.25,1) forwards .2s;
  box-shadow:0 0 60px rgba(201,160,74,.5);
}
@keyframes introMark{
  0%{opacity:0; transform:scale(.5) rotate(-10deg);}
  60%{opacity:1; transform:scale(1.08) rotate(2deg);}
  100%{opacity:1; transform:scale(1) rotate(0deg);}
}
.logo-intro-name{
  position:relative; font-family:var(--display); font-weight:700; font-size:2.2rem; color:var(--cream);
  letter-spacing:1px; opacity:0; transform:translateY(14px);
  animation:introFade .9s ease forwards 1.1s;
}
.logo-intro-name span{color:var(--gold);}
.logo-intro-tag{
  position:relative; font-family:var(--arabic); font-size:1.1rem; color:var(--gold-light); opacity:0;
  animation:introFade .9s ease forwards 1.5s;
}
@keyframes introFade{ to{ opacity:1; transform:translateY(0);} }
.logo-intro.hide{
  animation:introOut .7s ease forwards;
  pointer-events:none;
}
@keyframes introOut{ to{ opacity:0; transform:scale(1.04); visibility:hidden; } }
body.intro-lock{ overflow:hidden; height:100vh; }

/* ---- hero branding ---- */
.hero-logo-mark{
  width:96px; height:96px; object-fit:contain; border-radius:18px; margin-bottom:22px;
  box-shadow:0 12px 40px rgba(201,160,74,.35); border:1px solid rgba(201,160,74,.4);
}
.hero-brand{ display:none; }
.hero-sub{
  font-family:var(--display); font-weight:700; line-height:1.05;
  font-size:clamp(2.8rem, 8vw, 6.6rem); color:var(--cream); margin-top:4px;
}
.hero-sub .hero-line1{ display:block; }
.hero-sub .hero-line2{ display:block; position:relative; }
.hero-sub .gold-word{
  display:inline; color:transparent; -webkit-text-stroke:1px var(--gold-light);
  background:linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 30%, #fff6dd 50%, var(--gold) 70%, var(--gold-light) 100%);
  background-size:250% 100%; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; animation:shine 5s linear infinite;
}

/* ---- glittered animated underline (beneath "Hospitality") ---- */
.underline-glitter{
  position:absolute; left:50%; bottom:-16px; transform:translateX(-50%);
  width:min(70%, 380px); height:6px; display:block;
}
.underline-glitter::before{
  content:''; position:absolute; inset:0; border-radius:6px;
  background:linear-gradient(90deg, transparent, var(--gold) 20%, #fff6dd 50%, var(--gold) 80%, transparent);
  background-size:220% 100%;
  animation:glitterMove 2.8s linear infinite;
  box-shadow:0 0 16px rgba(201,160,74,.65), 0 0 30px rgba(201,160,74,.3);
}
.underline-glitter i{
  position:absolute; top:-7px; width:4px; height:4px; border-radius:50%;
  background:#fff6dd; box-shadow:0 0 7px 2px rgba(255,246,221,.9);
  animation:twinkle 1.7s ease-in-out infinite;
}
.underline-glitter i:nth-child(1){ left:4%;  animation-delay:0s; }
.underline-glitter i:nth-child(2){ left:26%; top:-4px; animation-delay:.32s; }
.underline-glitter i:nth-child(3){ left:50%; top:-10px; animation-delay:.64s; }
.underline-glitter i:nth-child(4){ left:73%; top:-4px; animation-delay:.96s; }
.underline-glitter i:nth-child(5){ left:94%; animation-delay:1.28s; }
@keyframes glitterMove{ to{ background-position:-220% 0; } }
@keyframes twinkle{
  0%,100%{ opacity:.15; transform:scale(.5); }
  50%{ opacity:1; transform:scale(1.4); }
}
@media (max-width:600px){ .underline-glitter{ bottom:-12px; } }

/* ---- menu category grid ---- */
.cat-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px; max-width:1300px; margin:0 auto;
}
.cat-card{
  perspective:1200px; border-radius:22px; overflow:hidden; background:rgba(255,255,255,.5);
  backdrop-filter:blur(6px); border:1px solid rgba(201,160,74,.25);
  box-shadow:0 20px 40px rgba(27,67,50,.1); transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  transform-style:preserve-3d; animation:floatCard 6s ease-in-out infinite;
}
.cat-card:nth-child(2n){ animation-delay:.6s; }
.cat-card:nth-child(3n){ animation-delay:1.2s; }
@keyframes floatCard{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-6px);} }
.cat-card:hover{ box-shadow:0 35px 55px rgba(27,67,50,.22); animation-play-state:paused; }
.cat-img{height:150px; background-size:cover; background-position:center;}
.cat-body{padding:20px 20px 24px; text-align:center;}
.cat-icon{display:flex; align-items:center; justify-content:center; margin-bottom:8px; color:var(--gold);}
.cat-icon svg{width:28px; height:28px;}
.cat-body h3{font-family:var(--serif); font-size:1.05rem; color:var(--green-deep); line-height:1.3;}
.cat-body p{font-size:.78rem; color:#7a8a80; margin-top:6px; line-height:1.4;}
.cat-premium{color:var(--gold)!important; font-weight:600; text-transform:uppercase; letter-spacing:.5px; font-size:.68rem!important;}
@media (max-width:1000px){ .cat-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .cat-grid{grid-template-columns:1fr;} }

/* ---- events section ---- */
.events{background:linear-gradient(180deg, var(--cream-dim), var(--cream)); position:relative; overflow:hidden;}
.events-bg-float{
  position:absolute; inset:0; pointer-events:none; overflow:hidden; opacity:.12;
}
.events-bg-float span{
  position:absolute; width:36px; height:36px; color:var(--gold); animation:floatIcon 12s linear infinite;
}
.events-bg-float span svg{width:100%; height:100%;}
.events-bg-float span:nth-child(1){left:8%; top:20%; animation-duration:14s;}
.events-bg-float span:nth-child(2){left:30%; top:70%; animation-duration:10s;}
.events-bg-float span:nth-child(3){left:55%; top:15%; animation-duration:16s;}
.events-bg-float span:nth-child(4){left:75%; top:60%; animation-duration:11s;}
.events-bg-float span:nth-child(5){left:90%; top:35%; animation-duration:13s;}
@keyframes floatIcon{ 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-30px) rotate(8deg);} }
.event-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px; max-width:1300px; margin:0 auto; position:relative; z-index:2;
}
.event-card{
  perspective:1000px; height:260px; border-radius:24px; background-size:cover; background-position:center;
  position:relative; overflow:hidden; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; box-shadow:0 20px 45px rgba(27,67,50,.18); transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  text-align:center;
}
.event-card::after{
  content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(14,42,32,.35), rgba(14,42,32,.85));
}
.event-icon, .event-card h3{ position:relative; z-index:2; }
.event-icon{width:44px; height:44px; color:var(--gold-light); display:flex; align-items:center; justify-content:center;}
.event-icon svg{width:100%; height:100%;}
.event-card h3{font-family:var(--serif); color:var(--cream); font-size:1.35rem; letter-spacing:.3px;}
.event-card:hover{ box-shadow:0 35px 60px rgba(27,67,50,.32); }
@media (max-width:900px){ .event-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .event-grid{grid-template-columns:1fr;} }

/* ---- client video 3D carousel (16:9) ---- */
.client-videos{background:var(--green-deep); color:var(--cream);}
.client-videos .section-head h2{color:var(--cream);}
.client-videos .section-head p{color:var(--gold-light);}
.video-stage{
  position:relative; max-width:1200px; margin:0 auto; height:420px;
  display:flex; align-items:center; justify-content:center; perspective:1600px;
  overflow:hidden;
}
.video-track{
  position:relative; width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  transform-style:preserve-3d;
}
.video-slide{
  position:absolute; width:320px; height:180px; border-radius:16px; overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.5); border:1px solid rgba(201,160,74,.3);
  transition:transform .7s cubic-bezier(.2,.8,.2,1), filter .7s, opacity .7s, box-shadow .7s;
  background:#000;
}
.video-slide video{ width:100%; height:100%; object-fit:cover; }
.video-slide.center{
  width:640px; height:360px; z-index:5; filter:none; opacity:1;
  box-shadow:0 40px 90px rgba(0,0,0,.6), 0 0 0 2px var(--gold);
}
.video-slide.near-left{ transform:translateX(-360px) scale(.82) rotateY(18deg); filter:blur(1.5px) brightness(.6); opacity:.85; z-index:4;}
.video-slide.near-right{ transform:translateX(360px) scale(.82) rotateY(-18deg); filter:blur(1.5px) brightness(.6); opacity:.85; z-index:4;}
.video-slide.far-left{ transform:translateX(-560px) scale(.65) rotateY(28deg); filter:blur(3px) brightness(.4); opacity:.6; z-index:3;}
.video-slide.far-right{ transform:translateX(560px) scale(.65) rotateY(-28deg); filter:blur(3px) brightness(.4); opacity:.6; z-index:3;}
.video-slide.hidden-slide{ opacity:0; pointer-events:none; z-index:1; }
.video-nav{
  position:absolute; top:50%; transform:translateY(-50%); background:rgba(201,160,74,.15); color:var(--gold-light);
  border:1px solid var(--gold); width:48px; height:48px; border-radius:50%; font-size:1.6rem; cursor:pointer;
  z-index:8; transition:.3s; backdrop-filter:blur(6px);
}
.video-nav:hover{background:var(--gold); color:var(--green-deep);}
.video-nav.prev{left:2%;}
.video-nav.next{right:2%;}
.video-dots{display:flex; justify-content:center; gap:10px; margin-top:36px;}
.video-dots .test-dot{background:rgba(201,160,74,.3);}
.video-dots .test-dot.active{background:var(--gold);}
@media (max-width:900px){
  .video-stage{height:300px;}
  .video-slide.center{width:420px; height:236px;}
  .video-slide{width:220px; height:124px;}
  .video-slide.near-left{transform:translateX(-220px) scale(.78) rotateY(18deg);}
  .video-slide.near-right{transform:translateX(220px) scale(.78) rotateY(-18deg);}
  .video-slide.far-left{transform:translateX(-360px) scale(.6) rotateY(26deg);}
  .video-slide.far-right{transform:translateX(360px) scale(.6) rotateY(-26deg);}
  .video-nav{width:38px; height:38px; font-size:1.3rem;}
}
@media (max-width:560px){
  .video-stage{height:230px;}
  .video-slide.center{width:300px; height:169px;}
  .video-slide{width:170px; height:96px;}
}

/* ---- cuisine marquee (two rows, opposite directions) ---- */
.cuisine-marquee{
  max-width:1100px; margin:60px auto 0; position:relative; z-index:2;
  display:flex; flex-direction:column; gap:16px;
}
.cuisine-row{
  overflow:hidden; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cuisine-track{display:flex; gap:14px; width:max-content; will-change:transform;}
.row-left .cuisine-track{animation:chipScrollLeft 32s linear infinite;}
.row-right .cuisine-track{animation:chipScrollRight 36s linear infinite;}
.cuisine-row:hover .cuisine-track{animation-play-state:paused;}
@keyframes chipScrollLeft{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes chipScrollRight{ from{transform:translateX(-50%);} to{transform:translateX(0);} }
.cuisine-track span{
  font-family:var(--body); font-size:.78rem; letter-spacing:.5px; color:var(--gold-light);
  border:1px solid rgba(201,160,74,.4); padding:9px 18px; border-radius:30px; background:rgba(201,160,74,.06);
  transition:.3s; white-space:nowrap; flex-shrink:0;
}
.cuisine-track span:hover{background:var(--gold); color:var(--green-deep); border-color:var(--gold); transform:translateY(-3px); box-shadow:0 10px 24px rgba(201,160,74,.3);}
@media (max-width:700px){ .cuisine-marquee{margin-top:40px;} }

/* ---- lightbox ---- */
.lightbox{
  position:fixed; inset:0; background:rgba(9,26,20,.95); z-index:9000; display:none;
  align-items:center; justify-content:center; backdrop-filter:blur(6px);
}
.lightbox.open{display:flex;}
.lightbox img{max-width:82vw; max-height:82vh; border-radius:12px; box-shadow:0 30px 80px rgba(0,0,0,.6);}
.lightbox-close{
  position:absolute; top:24px; right:32px; background:none; border:none; color:var(--cream);
  font-size:1.8rem; cursor:pointer;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); background:rgba(201,160,74,.15); color:var(--gold-light);
  border:1px solid var(--gold); width:48px; height:48px; border-radius:50%; font-size:1.6rem; cursor:pointer; transition:.3s;
}
.lightbox-nav:hover{background:var(--gold); color:var(--green-deep);}
.lightbox-prev{left:24px;}
.lightbox-next{right:24px;}

/* ---- menu stats strip ---- */
.menu-stats{
  display:flex; justify-content:center; align-items:center; gap:16px; flex-wrap:wrap;
  margin:-20px auto 46px; font-family:var(--body); font-size:.8rem; letter-spacing:1px;
  text-transform:uppercase; color:var(--green-deep); opacity:.75;
}
.menu-stats span:nth-child(2n){ color:var(--gold); opacity:1; }

/* ---- FAQ ---- */
.faq-section{ background:var(--cream-dim); }
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:#fff; border:1px solid rgba(201,160,74,.3); border-radius:14px; padding:18px 24px;
}
.faq-item summary{
  font-family:var(--serif); font-weight:600; color:var(--green-deep); cursor:pointer; list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:'+'; color:var(--gold); font-size:1.3rem; flex-shrink:0; }
.faq-item[open] summary::after{ content:'–'; }
.faq-item p{ margin-top:12px; color:#5a6b62; font-size:.9rem; line-height:1.6; }

/* ===================================================
   MENU EXPLORER — category tabs + subcategory galleries
   (Welcome Drinks / Starters / Bread Section / Dosa /
    Biryani / Gravy / Sweets, each with image subcategories)
   =================================================== */
.menu-explorer{
  max-width:1300px; margin:20px auto 0;
}

/* ---- tabs row ---- */
.explorer-tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:12px;
  margin-bottom:46px;
}
.explorer-tab{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid rgba(201,160,74,.35); color:var(--green-deep);
  font-family:var(--body); font-size:.82rem; font-weight:600; letter-spacing:.4px;
  padding:12px 22px; border-radius:40px; cursor:pointer;
  transition:background .35s, color .35s, border-color .35s, box-shadow .35s, transform .3s;
  box-shadow:0 8px 20px rgba(27,67,50,.06);
}
.explorer-tab-num{
  font-family:var(--display); font-weight:700; font-size:.9rem; color:var(--gold);
  transition:color .35s;
}
.explorer-tab:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(27,67,50,.14); }
.explorer-tab.active{
  background:var(--green-deep); border-color:var(--green-deep); color:var(--cream);
  box-shadow:0 16px 34px rgba(14,42,32,.28);
}
.explorer-tab.active .explorer-tab-num{ color:var(--gold-light); }
@media (max-width:700px){
  .explorer-tabs{ gap:8px; }
  .explorer-tab{ padding:10px 16px; font-size:.76rem; }
}

/* ---- panels ---- */
.explorer-panels{ position:relative; }
.explorer-panel{
  display:none;
  animation:panelFade .5s ease;
}
.explorer-panel.active{ display:block; }
@keyframes panelFade{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }

.explorer-panel-head{
  text-align:center; max-width:640px; margin:0 auto 40px;
}
.explorer-panel-head h3{
  font-family:var(--display); font-weight:700; font-size:clamp(1.9rem,3.6vw,2.6rem); color:var(--green-deep);
}
.explorer-panel-head p{
  font-family:var(--serif); font-style:italic; color:#5a6b62; margin-top:10px; font-size:.98rem;
}

/* ---- subcategory block (e.g. "Shakes", "Chicken") ---- */
.subcat-block{ margin-bottom:52px; }
.subcat-block:last-child{ margin-bottom:0; }

.subcat-title{
  display:flex; align-items:center; gap:18px; max-width:900px; margin:0 auto 26px;
}
.subcat-title span{
  flex:1; height:1px;
  background:linear-gradient(90deg, transparent, rgba(201,160,74,.55), transparent);
}
.subcat-title h4{
  font-family:var(--serif); font-weight:600; font-style:italic; color:var(--gold);
  font-size:1.15rem; letter-spacing:.5px; white-space:nowrap; text-transform:uppercase;
}

/* ---- item image gallery grid ---- */
.item-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(190px, 1fr));
  gap:22px; max-width:1300px; margin:0 auto;
}
.item-card{
  background:#fff; border-radius:16px; overflow:hidden; border:1px solid rgba(201,160,74,.2);
  box-shadow:0 12px 26px rgba(27,67,50,.08);
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.item-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 42px rgba(27,67,50,.2);
}
.item-img{
  height:130px; background-size:cover; background-position:center; position:relative;
}
.item-img::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(14,42,32,.28), transparent 55%);
}
.item-name{
  padding:12px 14px 16px; text-align:center;
  font-family:var(--body); font-weight:600; font-size:.82rem; color:var(--green-deep); line-height:1.35;
}
@media (max-width:560px){
  .item-grid{ grid-template-columns:repeat(auto-fill, minmax(150px, 1fr)); gap:14px; }
  .item-img{ height:105px; }
}