/* ===== Tokens ===== */
:root{
  --ink: #080a0a;
  --ink-2: #000000;
  --cream: #FFF6E9;
  --pink: #FF3E7F;
  --gold: #ffffff;
  --lime: #C7E869;
  --red: #FF0000;

  --display: "Unbounded", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;

  --container: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3{
  font-family: var(--display);
  margin:0;
  line-height:1.05;
}
p{ margin:0; }
a{ color: inherit; text-decoration: none; }
ul,ol{ list-style:none; margin:0; padding:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

.eyebrow{
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.btn{
  display:inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover{ transform: translateY(-2px) scale(1.02); }
.btn-solid{ background: var(--red); color: var(--cream); }
.btn-solid:hover{ background: var(--gold); }
.btn-line{ border-color: var(--cream); color: var(--cream); }
.btn-line:hover{ border-color: var(--gold); color: var(--gold); }

/* ===== Header ===== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: rgba(37, 59, 59, 0.37);
  backdrop-filter: blur(8px);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
}
.logo span{ color: var(--gold); font-weight: 400; font-size: 0.75em; margin-left: 0.15em; }
.nav{ display:flex; gap: 2rem; font-size: 0.92rem; font-weight: 500; }
.nav a{ position: relative; padding: 0.25rem 0; }
.nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--pink);
  transition: width 0.2s ease;
}
.nav a:hover::after{ width:100%; }
.nav-cta{ flex-shrink:0; padding: 0.65rem 1.4rem; font-size: 0.82rem; }
.menu-toggle{ display:none; }

@media (max-width: 880px){
  .nav, .nav-cta{ display:none; }
  .menu-toggle{ display:none !important; }
}

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding: 8rem 1.5rem 4rem;
}
.blob{
  position:absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index:0;
}
.blob-1{ width: 420px; height: 420px; background: var(--gold); top: -120px; right: -100px; }
.blob-2{ width: 340px; height: 340px; background: var(--gold); bottom: -140px; left: 10%; }
.blob-3{ width: 260px; height: 260px; background: var(--gold); top: 40%; right: 30%; opacity: 0.25; }

.hero-inner{
  position:relative;
  z-index:1;
  max-width: 620px;
  margin-left: max(1.5rem, calc((100vw - var(--container)) / 2));
}
.hero h1{
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  margin: 0.4rem 0 1.4rem;
}
.hero-title-gold{ color: var(--gold); }
.hero h1 em{ color: var(--gold); font-style: normal; }
.hero-lead{
  color: rgba(255, 246, 233, 0.78);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
.hero-actions{ display:flex; gap: 1rem; flex-wrap:wrap; }

/* Signature: animated cocktail glass */
.glass-wrap{
  position:absolute;
  right: 8%;
  top: 50%;
  transform: translate3d(var(--glass-mouse-x, 0px), calc(-50% + var(--glass-mouse-y, 0px)), 0);
  transition: transform 0.18s ease-out;
  z-index:1;
  width: 200px;
}
.glass-svg{ width:100%; height:auto; overflow: visible; }
.glass-bg{ fill: rgba(255,246,233,0.06); }
.glass-outline{ stroke: rgba(255,246,233,0.5); stroke-width: 3; }
.wave-group{
  animation: rise 2.4s ease-out forwards;
  transform-box: fill-box;
  transform-origin: center;
}
.wave-back, .wave-front{ transform-origin: 110px 0px; }
.wave-back{ fill: var(--pink); animation: spin 6s linear infinite; }
.wave-front{ fill: var(--lime); animation: spin 4.5s linear infinite reverse; opacity:0.85; }
.citrus{
  fill: var(--lime);
  stroke: rgba(11,46,47,0.5);
  stroke-width: 2;
}
@keyframes spin{ from{ transform: rotate(0deg) translateY(90px); } to{ transform: rotate(360deg) translateY(90px); } }
@keyframes rise{
  from{
    transform: translate3d(var(--liquid-mouse-x, 0px), calc(70px + var(--liquid-mouse-y, 0px)), 0) rotate(var(--liquid-mouse-rotate, 0deg));
  }
  to{
    transform: translate3d(var(--liquid-mouse-x, 0px), var(--liquid-mouse-y, 0px), 0) rotate(var(--liquid-mouse-rotate, 0deg));
  }
}

@media (max-width: 980px){ .glass-wrap{ display:none; } }

/* ===== Perks strip ===== */
.perks{ background: var(--ink-2); padding: 2.2rem 1.5rem; }
.perks-grid{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,246,233,0.85);
}
.perks-grid li{ display:flex; flex-direction:column; gap: 0.4rem; }
.perk-tag{
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ===== Section shell ===== */
main > section{ padding: 4rem 1.5rem; }
.section-head{
  max-width: var(--container);
  margin: 0 auto 2.5rem;
}
.section-head h2{ font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; }

/* ===== Services ===== */
.services-grid{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.5rem;
}
.service-card{
  padding: 2rem;
  border-radius: 20px;
  color: var(--ink);
}
.service-card h3{ font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p{ font-size: 0.92rem; opacity: 0.85; }
.sc-1{ background: var(--lime); }
.sc-2{ background: var(--gold); }
.sc-3{ background: var(--pink); color: var(--cream); }
.sc-4{ background: var(--cream); }

/* ===== Menu / drinks ===== */
.menu{ background: var(--ink-2); }
.menu-grid{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.8rem;
}
.drink-card h3{ font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.drink-card p{ font-size: 0.88rem; color: rgba(255,246,233,0.7); }
.drink-swatch{
  aspect-ratio: 3/4;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--gold), var(--pink));
}
.drink-swatch img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.drink-card:hover .drink-swatch img{ transform: scale(1.05); }
.menu-note{
  max-width: var(--container);
  margin: 2.5rem auto 0;
  text-align:center;
  color: rgba(255,246,233,0.65);
  font-size: 0.92rem;
}

/* ===== Process (real sequence, numbering justified) ===== */
.process-steps{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
}
.step-n{
  display:block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.process-steps h3{ font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-steps p{ font-size: 0.9rem; color: rgba(255,246,233,0.7); }

/* ===== Gallery / Carousel ===== */
.carousel{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  gap: 1rem;
}
.carousel-track{
  flex: 1;
  display:flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
}
.carousel-track:focus-visible{ outline-offset: 6px; }
.carousel-track::-webkit-scrollbar{ height: 6px; }
.carousel-track::-webkit-scrollbar-track{ background: rgba(255,246,233,0.08); border-radius: 999px; }
.carousel-track::-webkit-scrollbar-thumb{ background: var(--gold); border-radius: 999px; }

.carousel-item{
  flex: 0 0 calc((100% - 2rem) / 3);
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(135deg, var(--pink), var(--gold));
}
.carousel-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform 0.4s ease;
}
.carousel-item:hover img{ transform: scale(1.04); }

.carousel-btn{
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,246,233,0.25);
  background: var(--ink-2);
  color: var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.carousel-btn:hover{ background: var(--gold); color: var(--ink); transform: scale(1.06); }

.carousel-dots{
  max-width: var(--container);
  margin: 1.1rem auto 0;
  display:flex;
  justify-content:center;
  gap: 0.5rem;
}
.carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,246,233,0.25);
  cursor:pointer;
  padding:0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.is-active{ background: var(--gold); transform: scale(1.3); }

.gallery-link{
  display:block;
  text-align:center;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.gallery-link:hover{ text-decoration: underline; }

@media (max-width: 900px){
  .carousel-item{ flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 600px){
  .carousel{
    gap: 0.5rem;
    padding: 0 0.15rem;
  }
  .carousel-track{
    gap: 0.7rem;
    padding-bottom: 0.2rem;
  }
  .carousel-item{ flex-basis: 88%; }
  .carousel-btn{ width: 38px; height: 38px; }
}

/* ===== Testimonials ===== */
.testimonials{
  background: var(--ink-2);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
.testimonials-header{
  max-width: var(--container);
  margin: 0 auto 1.2rem;
  text-align: left;
}
.testimonials-header .eyebrow{
  margin: 0;
  font-size: 0.75rem;
  color: var(--gold);
}
.testimonial-carousel{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  gap: 1rem;
}
.testimonial-track{
  flex: 1;
  display:flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0 0.8rem;
  -webkit-overflow-scrolling: touch;
}
.testimonial-track::-webkit-scrollbar{ height: 6px; }
.testimonial-track::-webkit-scrollbar-track{ background: rgba(255,246,233,0.08); border-radius: 999px; }
.testimonial-track::-webkit-scrollbar-thumb{ background: var(--gold); border-radius: 999px; }
.testimonial-item{
  flex: 0 0 70%;
  min-height: 220px;
  scroll-snap-align: start;
  background: rgba(255,246,233,0.04);
  border: 1px solid rgba(255,246,233,0.08);
  border-radius: 24px;
  padding: 1.5rem 1.6rem;
  display:flex;
  align-items:center;
}
.testimonial-item blockquote{
  margin: 0;
  width: 100%;
}
.testimonial-item p{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.08rem, 2.2vw, 1.5rem);
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--cream);
}
.testimonial-item footer{
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
}
.testimonial-prev,
.testimonial-next{
  flex: none;
}
.testimonial-dots{
  max-width: var(--container);
  margin: 0.8rem auto 0;
  display:flex;
  justify-content:center;
  gap: 0.5rem;
}
.testimonial-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,246,233,0.25);
  cursor:pointer;
  padding:0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dot.is-active{ background: var(--gold); transform: scale(1.3); }

@media (max-width: 900px){
  .testimonial-item{ flex-basis: 78%; }
}
@media (max-width: 640px){
  .testimonial-item{ flex-basis: 90%; min-height: 180px; }
  .testimonial-carousel .carousel-btn{ width: 38px; height: 38px; }
}

/* ===== Contact ===== */
.contact-grid{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items:start;
}
.contact-text{ color: rgba(255,246,233,0.75); margin: 1rem 0 1.6rem; max-width: 420px; }
.contact-list{ display:flex; flex-direction:column; gap: 0.9rem; }
.contact-list strong{
  display:block;
  font-family: var(--display);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-list a:hover{ text-decoration: underline; }
.contact-form{
  display:flex;
  flex-direction:column;
  gap: 1.1rem;
  background: var(--ink-2);
  padding: 2rem;
  border-radius: 20px;
}
.contact-form label{
  display:flex;
  flex-direction:column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,246,233,0.75);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form input,
.contact-form select{
  font-family: var(--body);
  font-size: 1rem;
  background: var(--ink);
  border: 1px solid rgba(255,246,233,0.15);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--cream);
}
.contact-form input:focus,
.contact-form select:focus{ border-color: var(--pink); }
.contact-form button{ margin-top: 0.4rem; }

@media (max-width: 780px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer{
  text-align:center;
  padding: 2.5rem 1.5rem;
  background: var(--ink-2);
}
.footer-logo{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-logo span{ color: var(--gold); font-weight: 400; font-size: 0.75em; }
.site-footer a{ display:inline-block; margin-top: 0.5rem; color: var(--pink); font-weight: 600; }
.site-footer a:hover{ text-decoration: underline; }
.footer-copy{
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(187, 176, 160, 0.5);
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float{
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 60;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 600px){
  .whatsapp-float{ right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}
